From 3dc6966816b308272f596140c1efb160e67ff941 Mon Sep 17 00:00:00 2001 From: svonava Date: Sun, 26 Jul 2026 11:22:14 -0700 Subject: [PATCH 1/5] examples: replace fictional claim with public NFIP appeal --- examples/insurance-claims-agent/README.md | 72 ++-- examples/insurance-claims-agent/config.yaml | 22 +- .../fixtures/SOURCES.md | 42 +-- .../fixtures/claim-note.txt | 8 - .../fixtures/claim.json | 57 --- .../sources/flooded-house-interior.jpg | Bin 251981 -> 0 bytes .../fixtures/sources/nfip-appeal-b8.pdf | Bin 0 -> 114918 bytes .../fixtures/sources/nfip-proof-of-loss.pdf | Bin 588772 -> 0 bytes .../insurance_claims/config.py | 11 - .../insurance_claims/evaluate.py | 82 +++- .../insurance_claims/fetch.py | 4 +- .../insurance_claims/prepare.py | 257 ------------- .../insurance_claims/review.py | 357 +++++++++--------- .../insurance-claims-agent/pyproject.toml | 5 +- .../tests/test_config.py | 22 +- .../tests/test_prepare.py | 16 - .../tests/test_review.py | 66 +++- examples/insurance-claims-agent/uv.lock | 48 --- 18 files changed, 364 insertions(+), 705 deletions(-) delete mode 100644 examples/insurance-claims-agent/fixtures/claim-note.txt delete mode 100644 examples/insurance-claims-agent/fixtures/claim.json delete mode 100644 examples/insurance-claims-agent/fixtures/sources/flooded-house-interior.jpg create mode 100644 examples/insurance-claims-agent/fixtures/sources/nfip-appeal-b8.pdf delete mode 100644 examples/insurance-claims-agent/fixtures/sources/nfip-proof-of-loss.pdf delete mode 100644 examples/insurance-claims-agent/insurance_claims/prepare.py delete mode 100644 examples/insurance-claims-agent/tests/test_prepare.py diff --git a/examples/insurance-claims-agent/README.md b/examples/insurance-claims-agent/README.md index 452ea6f9..5b68886a 100644 --- a/examples/insurance-claims-agent/README.md +++ b/examples/insurance-claims-agent/README.md @@ -1,36 +1,38 @@ -# Review a flood claim packet through one SIE cluster +# Review a public flood-insurance appeal through one SIE cluster -This example reviews a realistic claim packet built from an official FEMA proof -of loss, the Standard Flood Insurance Policy, a public-domain damage photograph, -and a fictional repair estimate. +This example reviews FEMA Flood Insurance Appeal Decision B8 and the controlling +Standard Flood Insurance Policy. The appeal is a public, redacted record. It +concerns a July 2019 Lake Ontario flood and a disputed request to remove stones +from underneath an insured building. -The packet contains two deliberate problems. The proof of loss is unsigned. Its -net claim total is $81,060, while the attached estimate and inventory support -$80,660 after deductibles. +The record is useful because the outcome turns on scope. FEMA directed the +insurer to cover removal of 12 to 15 cubic yards of flood-borne stones from +underneath the building to its perimeter. Barge transport, handling, disposal, +and debris removal from the yard remain outside that covered scope. ## What SIE does | Stage | Model | Result | |---|---|---| -| Parse the form, estimate, and policy | `docling` | Markdown with form labels, tables, and policy text | -| Read the claim identity | `fastino/gliner2-large-v1` | Typed name, policy number, loss date, and property address | -| Retrieve controlling policy language | `BAAI/bge-reranker-v2-m3` | Ranked passages about proof of loss and supporting records | -| Detect visible damage categories | `IDEA-Research/grounding-dino-tiny` | Labels, confidence scores, and boxes | -| Produce the evidence review | `Qwen/Qwen3.5-4B:no-spec` | JSON with route, totals, sourced findings, and next actions | +| Parse the appeal and policy | `docling` | Markdown with the record, amounts, rules, analysis, and conclusion | +| Extract claim facts | `fastino/gliner2-large-v1` | Amounts, debris volume, loss date, and coverage terms | +| Retrieve controlling policy language | `BAAI/bge-reranker-v2-m3` | Ranked passages about non-owned debris removal | +| Produce the cited review | `Qwen/Qwen3.5-4B:no-spec` | JSON separating covered work, excluded costs, and evidence still needed | -Every model call goes through SIE. The review uses the generation endpoint; the -photograph uses Grounding DINO through the extract endpoint. +Every model call goes through SIE. -## Verified result +## Expected result -We ran the complete packet on an NVIDIA L4 on July 23, 2026. The evaluator -passed all six checks. Qwen returned `manual_review` with two sourced findings: +The evaluator checks facts stated in FEMA's published decision: -- Blocking: `Proof of Loss lacks required signature and date` -- High priority: `Claimed total exceeds attachment total by $400.00` +- amended proof of loss: `$182,552.00`; +- debris-removal estimate: `$49,500.00`; +- barge estimate: `$181,832.94`; +- covered physical scope: `12` to `15` cubic yards beneath the building; +- excluded scope: barge transport, handling, disposal, and yard removal; +- follow-up evidence: comparison estimates and proof of work from prior claims. -Grounding DINO found furniture at 0.509 confidence and standing water at 0.276 -confidence. The saved boxes use the original 3072 by 2304 image coordinates. +The model summarizes a completed public appeal. It does not decide a live claim. ## Run it @@ -40,15 +42,10 @@ cp .env.example .env uv sync uv run fetch-claim-sources -uv run prepare-claim uv run review-claim --run-id local uv run eval-claim runs/local ``` -`prepare-claim` fills FEMA Form 086-0-09 with the fictional values in -`fixtures/claim.json`. It also creates a contractor-style repair estimate and -copies the public-domain photograph into the packet. - For SIE Cloud, set one URL and key: ```bash @@ -63,17 +60,17 @@ separate ports: # Terminal 1: Docling, GLiNER2, and reranking sie-server serve --port 8080 -# Terminal 2: Grounding DINO and Qwen generation -sie-server serve --models IDEA-Research/grounding-dino-tiny,Qwen/Qwen3.5-4B:no-spec --port 8081 +# Terminal 2: Qwen generation +sie-server serve --models Qwen/Qwen3.5-4B:no-spec --port 8081 SIE_GENERATION_URL=http://localhost:8081 uv run review-claim --run-id local ``` -On one GPU, release the default bundle before loading the generation models: +On one GPU, release the default bundle before loading the generation model: ```bash uv run review-claim --run-id local --stage default -# Stop the default server, then start the Grounding DINO + Qwen server on the same port. +# Stop the default server, then start Qwen on the same port. uv run review-claim --run-id local --stage generation ``` @@ -82,17 +79,16 @@ uv run review-claim --run-id local --stage generation ```text runs//manifest.json endpoints, models, and per-call latency runs//source-manifest.json source URLs, rights, sizes, and checksums -runs//packet-manifest.json packet files and expected reconciliation -runs//markdown/*.md parsed form, estimate, and policy +runs//markdown/*.md parsed appeal decision and policy +runs//claim-facts.json extracted amounts, dates, and scope phrases runs//policy-evidence.json reranked policy passages -runs//photo-analysis.md vision-model observations -runs//review.json structured claim review -runs//evaluation.json deterministic result checks +runs//review.json structured appeal review +runs//evaluation.json deterministic factual checks runs//raw/*.json complete model responses ``` ## Safety boundary -The output routes evidence for a human adjuster. It does not approve or deny -coverage, calculate a payment, label fraud, or make a legal determination. The -claim is fictional, and the generated estimate is marked as a software fixture. +The output summarizes a published FEMA appeal for software evaluation. It does +not approve or deny coverage, calculate a payment, label fraud, or replace an +adjuster. diff --git a/examples/insurance-claims-agent/config.yaml b/examples/insurance-claims-agent/config.yaml index 7405c5f8..3f6b8e9c 100644 --- a/examples/insurance-claims-agent/config.yaml +++ b/examples/insurance-claims-agent/config.yaml @@ -9,7 +9,6 @@ models: parse: "docling" extract: "fastino/gliner2-large-v1" rerank: "BAAI/bge-reranker-v2-m3" - vision: "IDEA-Research/grounding-dino-tiny" review: "Qwen/Qwen3.5-4B:no-spec" retrieval: @@ -18,14 +17,14 @@ retrieval: chunk_characters: 1800 sources: - - slug: "nfip-proof-of-loss" - title: "NFIP Proof of Loss, FEMA Form 086-0-09" - file_name: "nfip-proof-of-loss.pdf" + - slug: "nfip-appeal-b8" + title: "FEMA Flood Insurance Appeal Decision B8" + file_name: "nfip-appeal-b8.pdf" media_type: "application/pdf" - url: "https://www.fema.gov/sites/default/files/2020-07/FEMA-Form_086-0-09_proof-of-loss.pdf" - source_page: "https://www.fema.gov/flood-insurance/find-form/claims" + url: "https://www.floodsmart.gov/sites/default/files/media/document/2022-12/B8_Direct%20Physical%20Loss_Proof%20of%20Loss_Overturn.pdf" + source_page: "https://www.floodsmart.gov/flood-claim-memos/appeal-issue/direct-physical-loss/proof-loss" rights: "U.S. federal government work. Do not imply FEMA or DHS endorsement." - fixture_file: "fixtures/sources/nfip-proof-of-loss.pdf" + fixture_file: "fixtures/sources/nfip-appeal-b8.pdf" - slug: "sfip-dwelling-policy" title: "Standard Flood Insurance Policy, Dwelling Form" @@ -35,12 +34,3 @@ sources: source_page: "https://www.fema.gov/flood-insurance/find-form/underwriting" rights: "U.S. federal government work. Do not imply FEMA or DHS endorsement." fixture_file: "fixtures/sources/sfip-dwelling-policy.pdf" - - - slug: "flooded-house-interior" - title: "Flooded house interior" - file_name: "flooded-house-interior.jpg" - media_type: "image/jpeg" - url: "https://upload.wikimedia.org/wikipedia/commons/0/01/Flooded_house_interior.jpg" - source_page: "https://commons.wikimedia.org/wiki/File:Flooded_house_interior.jpg" - rights: "Public domain U.S. Fish and Wildlife Service photograph." - fixture_file: "fixtures/sources/flooded-house-interior.jpg" diff --git a/examples/insurance-claims-agent/fixtures/SOURCES.md b/examples/insurance-claims-agent/fixtures/SOURCES.md index 04cf2a50..79171823 100644 --- a/examples/insurance-claims-agent/fixtures/SOURCES.md +++ b/examples/insurance-claims-agent/fixtures/SOURCES.md @@ -1,37 +1,25 @@ # Source and data notes -The example combines public government documents, a public-domain photograph, -and an explicitly fictional claim. +The example uses two public FEMA documents. Both are U.S. federal government +works. Their inclusion does not imply FEMA or DHS endorsement. -## FEMA NFIP Proof of Loss +## FEMA Flood Insurance Appeal Decision B8 -- File: https://www.fema.gov/sites/default/files/2020-07/FEMA-Form_086-0-09_proof-of-loss.pdf -- Form: FEMA Form 086-0-09 (04/17) -- Use: the example fills the official form with fictional claim data +- File: https://www.floodsmart.gov/sites/default/files/media/document/2022-12/B8_Direct%20Physical%20Loss_Proof%20of%20Loss_Overturn.pdf +- Source page: https://www.floodsmart.gov/flood-claim-memos/appeal-issue/direct-physical-loss/proof-loss +- Published record: FEMA Flood Insurance Appeal Decision B8 +- Use: the claim record, amounts, policy issue, analysis, and conclusion +- Privacy: FEMA published the decision without the policyholder's identity or + property address - Rights: U.S. federal government work under 17 U.S.C. § 105 -- Reproducibility: the exact government PDF is bundled as a fallback because - FEMA may reject requests from datacenter IP addresses +- Reproducibility: the exact PDF is bundled because government sites may reject + requests from datacenter IP addresses ## Standard Flood Insurance Policy, Dwelling Form - File: https://www.fema.gov/sites/default/files/documents/fema_F-122-Dwelling-SFIP_2021.pdf -- Use: policy retrieval and cited claim-review findings +- Source page: https://www.fema.gov/flood-insurance/find-form/underwriting +- Use: retrieval of the policy terms governing non-owned debris removal - Rights: U.S. federal government work under 17 U.S.C. § 105 -- Reproducibility: the exact government PDF is bundled as a fallback because - FEMA may reject requests from datacenter IP addresses - -## Flooded house interior photograph - -- File page: https://commons.wikimedia.org/wiki/File:Flooded_house_interior.jpg -- Author: U.S. Fish and Wildlife Service -- Use: visual inspection of the submitted damage photograph -- Rights: public domain U.S. federal government work -- Reproducibility: the exact photograph is bundled as a fallback for Wikimedia - rate limits - -## Fictional claim - -`claim.json` and `claim-note.txt` contain no real policyholder information. -`prepare-claim` fills the FEMA form and produces the attached estimate. The -deliberate evidence issues are an unsigned proof of loss and a $400 difference -between the form and the estimate. +- Reproducibility: the exact PDF is bundled because FEMA may reject requests + from datacenter IP addresses diff --git a/examples/insurance-claims-agent/fixtures/claim-note.txt b/examples/insurance-claims-agent/fixtures/claim-note.txt deleted file mode 100644 index 7947e475..00000000 --- a/examples/insurance-claims-agent/fixtures/claim-note.txt +++ /dev/null @@ -1,8 +0,0 @@ -Subject: Initial flood proof of loss for NFIP-SAMPLE-482019 - -Please review the attached proof of loss, repair estimate, contents inventory, -and interior photo. River overflow entered the first floor on April 14, 2025. -The form has not been signed yet. - -All names, addresses, policy identifiers, contact details, and amounts in this -sample are fictional. diff --git a/examples/insurance-claims-agent/fixtures/claim.json b/examples/insurance-claims-agent/fixtures/claim.json deleted file mode 100644 index 81535200..00000000 --- a/examples/insurance-claims-agent/fixtures/claim.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "fictional": true, - "claim_number": "NFIP-SAMPLE-482019", - "insured_name": "Jordan Ellis", - "policy_number": "FEMA-TEST-482019", - "property": { - "street": "100 Sample Street", - "city": "Lake Charles", - "state": "Louisiana", - "zip": "70601" - }, - "date_of_loss": "04/14/2025", - "mailing_address": "100 Sample Street", - "contact": { - "phone": "555-010-4820", - "email": "jordan.ellis@example.invalid" - }, - "flood_description": "River overflow entered the first floor and remained for approximately six hours.", - "coverage": { - "building": 250000, - "contents": 100000 - }, - "proof_of_loss": { - "building_rcv": 72480, - "building_acv": 68180, - "building_depreciation": 4300, - "building_deductible": 2000, - "building_net_claimed": 66180, - "contents_rcv": 19720, - "contents_acv": 15880, - "contents_deductible": 1000, - "contents_net_claimed": 14880 - }, - "estimate": { - "building": [ - ["Water extraction and antimicrobial cleaning", 1, "job", 4180], - ["Remove and replace gypsum wallboard", 1260, "sq ft", 13.5], - ["Replace wall insulation", 1260, "sq ft", 4.25], - ["Remove and replace resilient flooring", 980, "sq ft", 18.5], - ["Replace base cabinets", 18, "linear ft", 425], - ["Electrical inspection and affected outlets", 1, "job", 4280], - ["Prime and paint repaired interior walls", 2100, "sq ft", 3.75], - ["Debris removal", 1, "job", 3300] - ], - "contents": [ - ["Sofa", 1, "item", 1800], - ["Dining table and chairs", 1, "set", 1200], - ["Area rugs", 3, "items", 300], - ["Television and small electronics", 1, "lot", 2400], - ["Washer and dryer", 1, "set", 2100], - ["Kitchen contents", 1, "lot", 1480], - ["Clothing", 1, "lot", 3000], - ["Storage shelving", 1, "lot", 1200], - ["Bed and mattress", 1, "set", 1800] - ] - } -} diff --git a/examples/insurance-claims-agent/fixtures/sources/flooded-house-interior.jpg b/examples/insurance-claims-agent/fixtures/sources/flooded-house-interior.jpg deleted file mode 100644 index a0a11657f7a0b9ed6ec95b8dc4afb9ab8b79fe72..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 251981 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∈s{B_YdLc0+~YL4*N8{Ilk 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

H@+N7A5X(vx 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

&9#xWlVooDSGi~?HgX^7K4^>b;X%P*;6h) z2oSprS;VT)wqV-_I1J zTg<;lq$jM>@1ty^yz}um5-K4HEgG_yTz|S3;O7n4?e%0dQ4p*V`{H04}0HP zsTm`T(7aujD6*}B5EpyM$!*(NUO`9A{Enrdq|?JKI86&0$NnAG4a48V_%hgTXiJZT zJIA@?CXV5iz~d+WZG-%0kk%sV>Ir6QtACw9clvj;5nN1^7LM6_zrdJ?6hWgp1GzS? zLbvT)CoXCd-V|9!U%Ut%;Lwq7M5Fpgb3fsgfvAIvE^<;xZ2Gc^Q0##d2ekC>t;YyT z`511&R=P3@40o=#=dthGJW90amBd+V({h}W*en*Kzcnu0x#3T*u+(9y*L6h}Ieo)> z32?FvhJI}-KL_S^W2ndNUAgOx(Wp_+t1>1q1m`v%$~t`x`qlf`Sd#ASop&KWWfiTF z-YXhTBSz@mN+g>$+Whn_w`N!vT24`8qEB)ZK0^5`VwT*T>KTPWyYR-HGWUb3{k-RZ z^#00Mh(T|C#ZvFj_cIA|D)Ha9DS(5Qt|I;PDHz4Q$ljh=-<$DA&Gg@4J3HnISnvN- zO29$UDG_O73z^!GM{-irnr0F;g{JXkMamDw&|son{rH5Hsx0@@%pn8O4a0g4ToGJ0-vD ze)-)#GGQgNuydCi$iuW02X$N!;p zGbhwSIbdR-ublC@P6 z?>U2-htLN;@2o{=rQ#bJn&A1@hFhoTR1UqXp!r~u%b0O%=+{)SC{FYAW(FKFF0Ro{ zBpr<6$V;4#oltW{4(%z3(X*Y7TzQS(TL>I$?JS!;?`Swl+)<$`x;_256{6w#6QsxI zm(=P)hI61lE6{r}$rhz@$`dVnejPs;xoL*waLDi4`w_m+?2$37>&1jIvb(zc0&m#5 zu6>00c^P@R7@@%iLwB;x-r{~1^Yht6)oZy>CD*d9){|NGUGb}CpPg8v44tEXM1aTo z)$}w9jUVf-&2#J}t^*rd=Vo`Ybkw@&)n(NT3%qgSF;V1y4snE(of+}1=oodj?0EMu4N>KHfTOZ5C&tNy} zq%IW&F5k&H)5ETn-)QOP_qsGV%oSZ#-HV0H2J%{%L}&7MAViuoP5Re3F$K};I)Lc^Y0?D(yav*5zV(|s5aDEWoJf1&0J1t7NPD;6JA{*|p^=|zZOT_G-V zRu?Usxkw6hGc-jNEW@>a)|Mc8S4N@CFDBHK@Bw5w=5%giT5|Gio#S#SFBVzugZruF znnxNaVpozL(qGjzZ+p9ZNng+sp%=nFGfLjrS90bx^;RPiZt6KFA{KD=kVgBU^8DVA z9NsNhMG)((t97FdsaX$kec@jq=ew>;9V>9q+Bhe*bct~#{y^J;99a}Z_iCp{Ard%> zu0e@h{mjI}6kyLq!@t#q;K^P_pgtM%F1AR_to90mVB-{KieM^A96qT>^PPlEpG~P0 zVb#tF%91%DzwiOg(??jI1~q=74PlmG43lnQrnO}VWPt_PNSG=YUn)SXq2j5i5=&G_ z!G0QNX0{s-?ARm`RKLDR=ueA#bQI#k-?cDROZ=ey03&FwxXFYfBmwMbLRgQFl(odV zEMf@OU1%)xHXqmfYx3cfLG3H*1DuV`VU*n@Jtv{Us4E`K{K$E0%8%qpuc4-GtgdQ{ zE(on{m{gY@SXB3Z_8_#yHum9#S}Ce8-AXrH%%!^dt{)q@{fgOFd0bjx^00xmRs0$t zB%(tPQUn4vk7$!0^X@UV%QEM+9cY61wmjtxDYb*cBq>M+_ypxHm@-FgXvch6EAP@w zgq2##g+Y5E%_=SPer@fyt<}V9!8R>z1>__rR=!)vlrc;>Iy84j8|W&;g^*=jiq z$LOzj0)ZjlGXf#C*15!85-6v?(@;ErL70uWPOr1 zRx2`!iZS@gPo_b*4Xhbq-S}NyZ+FnX&!5ia-87jO;|1#_p{n-dq&8nA_;fDjh!rR2 ziurnf&zSreP=1nZGfvSK-KqSje_kICGJ|GIi|)`@_#B=Z+>PLH^P@|0d`(qk6H6*H zx-?&hRknkrrTz?&*%JLUnwo)A zyN5aJ?v?trS=qxJ*)~p5tGkV=)ZyB37s=3lko~@~!hN;*T+Tv7?T?knsDc{a5Vb5N zTMb|%%!)=?tQPD$iCjjSuYCD@CZlH2^3W8uo}uNOfCfnM@D?YpzPq`GR!#>z9Gq6o6qw~<$pQ3i_IfLSwh z8&jZ~xs9NWgZY27|Hz9NI~dxV+d6{miT<*SKrwTB2S;HueS0EiCNLrUuX{!|cCfmU zqZyb*W&TSy{#U;4kLLgI^*=5DWjg;l`ahim^LnNZf4Y(c)4}G3f;OgB#zYK2K?lP> zq$vj{BbYk;=bnyTiv2ij31)WX*Iz`07zzC*;UH@q?u`#mz?NaR@ zNfrhMp!&bGm{=LW^r8Nra1gODfjLNHYgMrJUvZ(oTqhkX8wb&!zKEC@SlIq_^WRC{ zKj8lx*8d=5fkHAsS&+T8z7^0AOhfSBP{>Mx3m)iX& zEkrDg48VV3WMtt4bF@|}5g9!t5eY3R9^PkmDq03c78Vvl zN={x5CLVfb7N$Q&AmHHO5I!JaBO+om5#tdv{Xah5IsquKfJBH?NC*|MkQtx ze2=D}4?|*y&g2)H4NEFi)rFxrc}~V`VDAqHkBNnigG)|9`I(BEg_Vt+gOf{GL{v;% zLQ+aeSw&S%T|?8*$k@cx%-q7k(aG7x)y+L1Feo@AG%P$WJ|QtF`Fl!gPHtX)L19sG zNp($aU427iQ*(DuZ(skw;Lz~Y^vvws{KDeW=GOMk@7=xqgTsrtf_UcwJ|R({potmZqY5g(=-Z)@F!{lv3&mzvb-|G` zE1qK**iXV^lCf-(U;Kgg7uo+FF#rEo$o>P^f8tsKAV5NZlLv_c;0N42e$MfQ2cM|n zV>7G~mI%cZl0J=v4;iz;rn7YgBt(t2t^d3S+G7lamBlqGz0oXv0(IEpHS{ydG@&lsTIjWw<)>+EQgb zA%;CNs=Acz(-!|pg-@c1j%9MvV_!vzOHL0@gNaF~C<7S@p1&}{J3+mzBgMwaJukjb z5iZru9f}jZf(WoUMBBasdD{d<=<8yRcG|+WY1xT*?xiOA6{;ZQHBJ5>hRlrkeoN~c z=C|!c8B21M@?p^&bPWi6xovVa?N!Fb%ML|3IsRKT-vhrjHxq2k)TLx8h@u1j|2ls_ zJGd7#p1uK$e-7E(>bQ|TB46Zc%@Rm@cUd-8acfs9`ZV*G>rB;tzus?Mlwgh>A&5Ap zQBF`$R?%)OP z+kJCgg5#^xQw(!F!=$=^va`U|%?-^?-D1_Zro3Z}#%S~5DmUKjs6SZhPqwr*_}S1Q z$#Uc`?S=pV{=9>?=XwKpq)v^vSvWLF9-y8@=;WQBW^Qrl$I+DYsh{GI%T!zanpfn< zP2we2ld5f)Hce9Q=y)=^Q{8XWb+G~L0C4014)-&1Web`sGS(*XM~?}8p3@CG!`J(4 zML5TN1?3-rScd^GB(KZTp>Kc@4m1zHn>PTYQi-ZN(op>!n$!fV4DOyvU7gwQX&b*d zem;S+>YookG3;tzV5W*)9l9Q4LMp82%g3TGAR5{uxeerzRAx>#Lu|#jHAy=!q?p~x z4qXt}nK!((r``bFkokU>I_t$ZXjjk0SLG^qm&hikKkBat9G?zay;BqF^E7%)CPX%8 zo_|-XNA5u(IFiDO7?NT#O@07>fi`;Mvx5!+O zUw-6}j#;a`_fAAl%?!Oxq$xd!wZLrbkuksXJ(YUl%hW`hmu5(CtZ6<}JAZzxui2)P zy1YD?n(BnbT%#mmB<`a2X;-$DJayeF@7luW*Gk=@iI7yCrI)G2Drt!mAH+i$+}Vx| zI9e*s(X!C})LwfYHKjFTJ9^niak9~{)|* zNOWjr)Ru|km)*?7Nr!w4({!Pt$~b}T5(TNUlX4ip&PP-c11|# zO40??(%`Z+#+J~x$}=`hc=(tzdoh8tbod4@lSl2z^@aAYRv4sNkB z3r9sI?$*!lK|f<%^?NGsWOT|1qDNP`gU}TOp#MLfa2lFxxwoHWihR5%;ZDvp3!^P# zyXJ0A-TdTUIrw{LyJ%LgNkGyhcOlp7RD8<}FWWDjK7sBpGBR74bghg>^Dl<5Gh+B@ln zuxz!jC~yRYf?Nl*cgu@)WKtZ&6l}j-qyY&nY&CyyD@xSq@O(qS3YY#$z|fO^vCg_I zybVIS&zM7GJKQ=FiIR9vzC>d8vf63Omj$1Ff!tY>m#lg062ID7jePA`zoP6VE(+O% z@w+Tv3!#y;YO4)~bFy!q54 zLM+ynd8&dwj7Xj6NwUn8?Mw6w)aEpWbL23`r`;>7a=O+9g!BhcFcIX9!odA}=3b;? zc8EXdhfYovM@f=)^iXQDF2y`Zi}?s^JY&rR;sJ@e`Y<)px(RqX@mO|@e3dtSy*#G4 zJy_#Ad{6e=C4jw?!~-$lpsAS|a5F|S1Om}^Ov>_mpp}L5GAXAcyC1%+=+TGZm(-0F z^M=ImNEb3NT3ik1-rFFjBEQ^>AL*P1T=>KNAey%pL6Cd)6pYIZzajKv-JYGkM;5BP zfC)=lx_jl#2`h}1>_5*#Fg;v(Qf1v&{B2#?xQrZHR*;~#=0ScNP;hi1UUI-L^r7ae z&&6tm@eN>!@AE_WCD+;zvGtXvX*#Q;)^KOA+J6+5sD9nn9eJvCpqKFD83?XwlCi+t z?zf=?It{}Ond2k!T$43lzn7Lm^v4D!mT1T!JQ*5<3@ym`hj|v;@uVwvZ%XZ|h_s}1 z8}P_9bB(Aa*La~Nn%(D8Tst4*#BxNYnxv`2J*~MTG zbu)>7Rii-w=MAtl&bjX+ah>^2I{)6{NFqk7iNblU68FJdMn zQx)g^&r^!&XTf}lCF>b13baIqMh^bf?E+C?aOIb|F^iKc(cw2h%Nt;h6;*q(Ln()j z(g-vuiV>TYATI$)(exoEj1Q}>Id#o)54HO^nkQt_uM3|#7fyOpL@JN?f*aopqaQqm zPMv4IK#{!xI^FoYW9~I|(cS=AftmNnl=mtg@Eya0kA1*hJ-0;#ZO}6v5bg~yAtd(< z6aW1A4G@&S$^Qr|`3CU4^a uDq=BGDyAxwjLKl8=84jPI*dDSkrHe5)nyAF>P}W zD4b{{`=EHT8hWti_g$4uw1{mFIt0VSexp|5Y%q#&`kKt_j&J?HVmTG8^kWqYeWmQYb)V{Z4Hb&`4yDwfT09CN#%Z@g zTRu?t`R_)fIEQpdsZ(2_MaPB^md*wJsKka-++Hhsl*e zvDf$LDC=Ew=jlCCp5+ z6Sq?76yubzZ{q8AN8K0K80PeKKP+yC*X{(oc$RdYZ}uRe zOxn2Y?c(c;58W^f@-bXYYN=fH`kHs6iKiWla#D=G*9h*sXGV*LJDPB=bf1G7%UW~e z2mf_V?K3}fSQp|s^2`UB>k`SJ9_t(=X*#tQK&HUUQK{~sq}M~@w+TF3y1ZiQh1z18 z)-3;SNF|sOK$W$_={mGiSIwpxllr`$t;fy1O2@h$(ryKy)9bMw;^EW_XE-q#o zEmrflZ;}oy*{dqD97M>v9N2di;pM}4#dx(jx%4Kt9M0-f$Jr(*Aw<>m+mSbr9RxRL zKFE&PwNW@WbgW^Za{3vG(8)k$-a#BPf`QcE-q`mt#_FuUTZ7HC9PO8+t>9Gg8G6sX z4}Ni}l?_q%pm8GBi4!Zw$9(0Q$E5FI-U-|P`t!MTNn-C=hx{cd9k)E;7v?X4X(1#` zk+aNv`HN5HE)85_`K8Q~IkX^poDbr=_$?oNxeT3|`z^EUI;K4Z4Y?LqM4jM96_0tD zIAJC>=Gixg>R_Lli_Me#Iav|8oWog@Pk*j{L$2CU<8i(cSH5w#>Jgq{InnE59NT;n zNMbwZ($*m((3Fz=B=5KyiFTp}`#N&LwH>+x>aq0kE7NMxL)RX&GxjKrFqQ^!>Q9$N zh>fy)<_``&mY3VsjU`51iIT}4T#-gHr9=92ql_s@-JX7Cx0bCB_n*__o5JyF z_lxpo!PEYY~Fk<)rXs4Mvt*Er2&oMK-oDmv+&ld1Y z`Ej0cYyAO_HPUB%r{fW&QvM!XsY!0L-vD|(PehekD2fVMsa`Rk5M|LSw#l=B&s61* zuRe9arw76}0E$Ki$-P#tIRSqA3{gvmoAsutO6-Kccm)=Jx%;gA?Daxj6vdug$|7lF zWG>SU;L)UY-@w9wX7GA1FmLO@uy}VJ+AToy&a5MTZZ7-0P;{p5Q`$kr4Rn$lt}5(4 zfNW=*YO3CoYU79>j&7p1F#}YaNVmHk)zr_xdz8-uPpR=F{+YKs3EzVpH^T7u8vxaO z(rk^meLBn3EGr==g+US`+%qjoi!{NnXkT8W3T0HT0hg~B$Meyz zXp;Qd9e4Y#so&1gg>ip7EGW%<*vfoFsc2BYH_Sb9@B5YS;N)5Tt1HFO5uO7wvY5Bc z;x5P&S$~r|BBh+3p2B=qB{1(RK<*28D%YY^s?i)RuP=?%78fL1btM<+C=H(1Chf`8 zx*3I&3*o9lH)&^l$A6&)y|b9uZ)dD-YTTlrpah);V~=mhu{vy-jmK01POD;`9o48@ z%;}EPwl*hrP-}&d z0rxTUtn<-{TT=8)HGIKnO5t&bbmVlZtxe&>QXi4)OT0pENWbptL44)s3XAI^)`Sv`<{RhV&$7L(h6g*njf zh`1)*Tu0SWr#~aNy+E7E#`D(Uhrea0Qt*#hJ#@uxl5)bE8xh|3`k)k}IdOc0-G0(5 z7>b|P_zX)@TRP&6WGQCNcP5tDZs~lLLwL-taL>+vPJKgtS<(|{Ls=(QSX+=s2cCXd z*t@Tvc?w(O99#lld3^ethkrZq@hCv>ug5%uAC~M@li*9N`iqUa10*ZdIt^c`!swUJ zw8v@7eDHjv4l26X93W=;JH1u94o*DzFncJzPkEJ4n0)y7={uaHF(49EjmMw_{^B8J z#@Xf46ngUwfUB!+$*v$yS6=HLwHdc{DMCIgjcT{-E6c$%U%S7wno(n7bG*8=!k-k^ zd~(I;D>2UNy4U7f(NxgqmUVEHw+u`!)MS~DH?(mPhnlHDo zITf+K6llUjTZrm3Tu%MnPRz;mY{cwlZB+*Gi>tw60DccQz3ia3AA=|_8u)~)l77}K zdG`gU0xJ1iU$fwks9>ALJ<_L{z4OzOcPzubgHbeuClbghZ0fWDbQ6xJ-gm6!=2?d> zb4%aS zE9O&X=1%wrUN$7~cRpH=nf!aCqO(jR+(Igg^DGk{cVG3-6gg-W41 zAiN%sf#h07h~+6-mo!#>45gN&HW%5-wn!8|6JvwK+sN9@nv`8>F0PQ_c6x@9#CpZ~ z0gKdu@x}n~2JmyY`+>mLI!%KT(b4qftR2&m=`i)Qd74b2ZbI5WmJ0q887johIO~i# zgF@E`kUui^;&&*DfjpM3w*r%$g8`O!1^4Isqo(32VyL3?5%hn#=Wz+@svGC%g| zC)bZc7>r|;fFJ0U3+HCa%18C{D_(>dmcy-T+g=Wm7ZX$ElwsEFLM@s^a$}KK_w(E@ zZ5O~-x5M>&h&RB38n2yQ$?AQ{oVB?rR=-(8SkC1#4)$Q@$%*!i?J!;a^u$qlgnf0? zT;Vit5icS>__QU+6yEK?_Zd7ZMScXmK)Yjgfgau;uHP*3U!&=IY^Q_Qh@jH#T5ye1 zytkO|Q~UVKlV{$aVPy9K^%!RWXK$)4_1j)n;z`wpLM8=qi=J0ZUI*?aa;P`;JWD1v zU4C#bE#@xvvH|rrS$c-3k&lVzm(!(&S7@JGl~K!&;16u-LFUPKrKh`^OT2P`W{@4m1jz+XGMZC`J&H=8+LfCP&aPzPb|o?RYy~ ztNA_)z5(E{f=*8HuN+`6O>b6U^m@O}Y!@FEMA;uU$fj|HU-3s|5IqsZW5z&kY1K4q zJD~);$X&ATUw!!|a3#@YC`vo(4iQ~<^-6gkbb)-|8U~(?bl6s2a*OZI2IGE689R=; zh<8@rZjDavStH~!?H)5#Ok}k4u{dpM4)x{s;gkEVtD+})-%J+J*__8%q&_t{tLz8~ zde?4MaZJ0iO~pLkucW+(T@m^i)AI(nq&LsJ0SCmFM!L=9-se?xjQO>V1e{W6bG5iT z-p1$8+_St=mvro3n%cf^agdsS+JA5H+ikvYOz+tHQ;eKgZ*uk5m|Lv)$CJ{0B)6iJ z`Qjm&!QZdgi;@+tQ&(EepIUvV;+Mz1rF#dJT5e-T8dulMk?N&lUK;ZsX9zwci9f?P zcw-$9E_x#en`5ErR{dym&TQtV_rcw-d!b`3hrg1w=l4OQj$dpc?A&T5*PMN5CQagS zq6KftR*pWr0lGAYCR(+OUB^Oko{PQM*r8tW2=5WSsFvDgk|_O6gH@JE7*%14IJ+>e zL4K^2C*yD$+BGJw^FwL#?icYl*!)qJF@+_mOd}R%2Q>vb;WWQ^l@cx>J|1CS`BWEP zTGW+Wq_*Yn$eX(hbTEr)xuuI$ZA6|@Rx0@N?qBe5m+PlJMJm65=LaQe_D)(asAIKh zdG(pL8oDA#?|cP0cx7!ZjV&og$-NYf^^jIvBji(gg_YulXm`RU=}zu!)CQk=Z%7e1 zDlBMFCj2pVl*pBC|7YnQpBNXFGgTQ00$X6EMKt6gT(SX8Jd zt@=ev^6Wu6S?g#mYu-<8HHT45*EPON)K4&nksE&ln3VHj>R$|;bIKt#cKEUEfcW|? zza6QUHpW9sr?HE+1S*|F$sbHvsNR*-58?MdeLr3C>u@fCDIz7yC|6}Y zp?pPIm30-3|Kx^YC}>s95L&fC$_~GP_hXe?8LPoib8@MB?P0S4i8P!rR%~H16rm-8 zfdj^tThQhnWB&cw7*;MvLC$n!Qqd-=x&G?!7W#`|h)^gaTQ4zD_t~J<=GU}BOI`9t z591NyQ7D{bJN>8*$FCcNx0Yd(wO+)mMFw+Dq@Z^YG;m*ujUe%i*u=zTX=ZKOiClTh zaIsphvM+y;UVe{*=)}9@t+~lXV_Q=A;wtgEV2`Y|!diGs54j6o6ncuxf}yC20pP`` z9TU1XtfTr%8votglcPp`VwS@drd3oMHc}&L_-sgbs&`GHV3CGb$)K#?9Mude#6fHZ zKUXC%pjD7(QmdeYJStp()UkmqnLCZlak&d`o{TqLXZq>a!IPxeTvL!Y>sQj(l?l4D z;Ima6A{^m^gp=2yGGHifeG~LGuG4T`T`Lvd&(H}X#GmgM#J@^nk2xn*yIOAk%D=_g znMsoVe)m#hLWj0pj}^7{<}0} z2YwNUtCQWn$9P}9wAiyL2cLg(Shf_&w%*$4(6soAPiNIG9XYE^kBbobURW+dK7}M+ zvGHop&49_b!!@pL02cXac5glPmY1aoGrydDz9*l>g^V~{fh^8-k&$xucrKSmElHqp}7(RqVmvu)i$TQBcfkV z1pk)wPp6srWZ;U<4_@Z|UzBvBO5g?PIU0B1#asFfkd1qT><=Dlffj@}cW;1d_!~R^ z)1w{NM*h3xD_$VRCLeFq@|J(>CzM^SOK`C^X3 zeM?fCkTGxYW?k&M+8dw(JWPXEn;8FIZN`IXNY=gf|J%ohTRyAvgBJ{$XL7slNlY}o zujB`~iR)2umX;ryvM+N9jO3XScJ3fCP7>yfZVv zMzhGFSRfh~j?jFmN`Z9^k9-H?Q|>sM77M%hnWdKXsHRJ~5t7~Ke_!IBfpeh;E=7yYkB15rL>*A|+!9=`hA>wp z>mQy49AnVv^2Q@9FG;MfQGFnufAMdq9C+Hdo8@Z14;s=SF8{%JsL~JZ#0^ zC(gXUvQ7(0)nUOj4d?=qLzT1$HZQb#2^Ul04}S7dwv%hY#9}`UTx@t#lzNhY8L35< zrn;1P)YTucrbPm7&x0>Czt*-DF76^|bH2ace*Kp2sH|{B_ySkDA0e$?c0yd|_pS#X zcG3%gr^X9fRZ@Oz`_;;ScGz5LTotXFgvjgHS*34Jj-?@fE}>o~^CvlsG0K)wQ? zg`l^0#eV~wrQUjZD9L;hZkr(+I3=NlI9(0dvZWbm|9DWXd&CvoWOr3-Xi#-VidXfx z4W3t4q;u~?l-O-`xN%JCxG*JmuJK1tl+C@+?)|Bl*4IR4xvg2cN|;7V>Yx zaZhbIUbIllt8PRw5L+)+mqqP9*n}%1MIFKpva-6tG%L^01+7L-+!=2lEj7I$sV2>x z$*fn43IDuPiXV&g30862prc2=L3`AZemQ)(q&zHFCZ@z>2e2N+?kE=kSjk$O)o!p2ai8 zK2k$pYF_D1c}0<@U48;+PG_6z~O~vpj8lhF1bjfW_iTi z9&J>9#6O}jP}h}1p7}xT=b>t{vzqjlHOZ1_?98VTHl6(Wrh&TfL4S3afS=ZrWFF zAo^+;sVei5u%w#Ln|D~C}_X=`XP;l?tcVphwly>xj-sr&6JX(^e9$^DQTxu9C6^JXV+L!PL znlyW)715roZS5L`li`>e`ogq%)>t~(8QV5s)<_}@W5bAb0U`;!gKL4F;-z{$cxXBu z$@taF)-VvUvSMdS-#9C%Hnb9_C$5Q8G%+oesxK-kks~~{EOW)}c9y$H#eVJQ(d_J$ z8X0|rQKZhp<%G{!c-;fRmgG6w19ZSTt|biM(kCZ}#_%6V4ub7;m~ z;2KtIYkU`ejk=JAAKuC`R(s%iuV=^%SqxaXmnDY`iuL8NpU!;N_De^5xZY=1^Eq$n zDrfC>4SuB+3SkQ!xl4NjkF?9{88aCO_gXAx-~l-FV;`W0Jo{36(O=Q4E4~!rO7rPf+ETv`6+7YT3QV@* zVvY`b;XkXCvUd%T0-+D5eoGzx8U?bx&0j{p*zuZjh5C6rxI9;C!PK|$!Z!Y;K2?j+ zcCl#|vEzGH)v1S3tY3zI_Oz$Cap?j0zczPPv|3w^TdlzuyPX^>9;n^IFS=?Fr0TJc29JTnY>i#INQ0Z8AZlR6 z5*s-Dajf8^nI15fmE@vsCbQLoJK+@sFPNb zV|%SGuejl?CZnY!`E<%O&NY1N(>Us(n(FwjFx_Z$G!s)^I)P=|z5Z4dmf&RN*I8iF zng%_4NrGW)Ey6jC-Ya^0A~-|RXG8qm$*<`Be+uK@MoXb?;O5{m&!M`fDCbpP^s@K` zW^!eiY>I0G2`z|NYMYlU#$t9HW6V{qtG*pYE5EKe!{^^rG2=}|TKH8#PTqqvuNfyt zA#dk(g~{1K22OQz(%iO+#9r7iSAs*G-;OO!!HKS0u_wi}6R+awqm0mj?v`p|tk4E{ zS7o40h5Y@?t*OSW^qs|Cf@}Tdy26EOu8TQk8i-{%P5>6_tHU_!q9^czEhbC-5XHi! z)aG(H(l?h)3^}X3<6a3@?FAa>1K!(#=iih*;N`CacKm6a{jfj_A+@?P-@HIS^bm=i z1TW49&XZr>lY*Cza&Lg%Y2*8_O}41c*=aJu2ctK@vy8(V;5`4j@)2J5Rq_?xr#pG7 zW1q_Ff%0Azp2PSyW#)H;#Y)ld_K!Y;2kb9yL*RK#zB@RqQJ$Oy>qDk)#bjzIAMxQi ziMDw|vdi882%fxE=k;ZeL3Jm+zb3Kk2eGip2zr)Ej(k2`pEzhV%@lMrM@ud+Du3|v zg~1`1DUnK)Dj(WM-_%Vc$If>cX>}@IJX~XHY_Cc&sn;jKqXKM-xnIqwRU?P4p$$9- z8~y?Eit!5!EO`p-JF)aSIK468h^X@K{Ns0`sgRvyL-r4B1M{I4Iyp&IjgL&}r3e8h zx-b{);EKEOO5yQ69&>(YxN)EGeqa}DE4DEe+hpiKSGdTn74w&=Jncc#N!*8H{W%?sxCmsGWI&Q9p< zelb`c(*q^Wl0?q@s(db+M0)j8d%n*XW@SH@Qh+l>oyZl`2T0t zJiu8~bHbgW676Gin=LY+9+J$nFni@YZ>x_mL|Ce|q;m#c&b7S1H(kY^%t|%yz!iYIIWl;O})` zUPw(a5=WPQ9!$D)HAFgLmJ`0oOPYQ`80v_~$H}s4a6!V(@RKpYun9@|no#qh-*t*6 z#V}kniPiZ7(I5hI*WO&a?}eN%t*1(nsGEbE-G_mXp|Dl{OmaTu`aa#?r+of-)z!Rl z>!=lGPusKcf^#3aa$;IEBW$D8vRo6K_bpY! zz2Uy!cF&*l?)qUmG*@P?^Jj>LH%;}L*V_Ako}A_~w8xkBHA7zhZZ3WU961dhXcdlD zw40ztbqI5dW@@+2RW~e3`nu zNBk=HI-6r(y>fc%(l`b!o!>K`f$769sy~v7L0eu*3ez^%eQfnrz5AwmDGht+KFE;K zH)){k1Ez@5C`j$*>GpBrXvZ~Yv7Y~fxwnjpYuOrhaSIUK-QC^Y9fG^NySuwXa0u@1 z?(XhRAV6^EW9P`;`#bW!=Z-V(y+3*kq*qt1HLJRN%~{V=b(Feq#uK7 z%m^=W7c&nYKI#((o$*=Q>~Bd;i{|eD40Ns>yrYvMecQEQ%JWXnM(4>tt=<8K!rqb= z)y;U2E~R+%3s|n<-x?J=m7iQ*nv1O+CmcqunX{3HOg;;8 zl9lTq9Cq`zIzoRQg5WS&tVIq900&0AZ9eZP3*G&1UfHIX|Y);mX zsp>-hg1(*OZI2D*?@yeXukq-OFB$O5p8deSvi#CbO)X0{QghhVA62Zzb>!sGrMD+oc2zjG*Y zgnMpL<#<+dynZgOz#uQ2o0cZcXL~rBXF}&Hk!uIJgdFA-TrD3k%KtuyBwf>8IV*0^ zAY@-NMb-S+a#YD(mLE@c7+DaCE-U9&PB{fbh<#^s&~%R*_kfdEuORD%o)DpJgpDeh zBCy!b@4-ZkosowKhW+jFix|&d!d#OzWr~H{&03jpm|Ff%At1`A_Q1?+s-fe`y*FSj z)#k;UnlKb`LflQQy=$zwq0ov$*YxvYMxnL1U`z{x;wiz%`wCQ+DhC>|<3=)zRP2__a?o>U2ZJifav$POKrf zn9b+s2FVyoMTCUE?%^kk>+ajzPhBfX$ z-GUfGD=+4jouJN8xv=P%D_MQ7%}d&dZhyuIVqOt4vngC5qA%_p!Z-q6hRsf5DPZ?w$erILv<3p&~kS!)Gw_gFnUk<2zBd z=?!SD-5Fa+a7yWS8H{sf;dcP5uK4hkni(rgiPp+T(Vx{LFWeNG@f(S`UU6|o`I_d4 zUPW>y5I%vghwlJ@T1<8Y^i+1mO4eDk|6PV>tlL!xKHy)Pv~F*5mfp{YqZAx&1kf*d0lX$lTtEdC2Qo_K^w# zQJ8ZcMO9wp$9n%C=a2*vWO=c@;bb{L|E0(0_mzK&T>Y{y{fW5wcgz*Tzhthc1#B!0 z{{!%f{+C(mUyxU9?7xFof3-XPuCMxauB zh+nb(kN6eCpYSW@zvEYQAJ!>W)<5G{zr0xgaK?W}qW&)~j`3f|=r6q4e-fo%;;(-Z zC3^Zl@Ns{2ZT%rk|6m6DGkW*y{QnssNB#F+{?kBF)3eYp{jXTLk7xbP$}#*NEP6IZ z`acHiKV;>Y*#8 zBRxCaAGpTfrpxcKVr2V6tQhGT|6Q#93N!xYIeKX^wx>W>CK%yKLr{x&+g4}aTl zWAB6eGy2fYG5vby`P0e&Qeh`Lcj&9Uqe?3z}y^m%; zn*Jb2|Kh7tviV|d_M6b{11bHblKWFX{?1uy;L-nj-_yeT!-V=HQ2B4r*T3Pig5pBI zHT~NVWcZ7y?zdlQKmM#_BPuQ=t!GR7xBk)!seD|lk05;fQ_;=g0}%a9H;707Yf}HZ zcE68=4@C5X(Nv)QID+x7ZoWVC@sIqbti7R;{RebP_P1s}1cwSnCT1Trr5hRlhl|kY zH{+p`t*xbz)o*0xpLBS?TKQiM$bXE-zaNMHKjCZtI3yW=&D%c?glE(kQ ztN1r_;vWr*zk3z`=34w;c@_Vg`b37mC?5Yi{=`4w#=l8;+`T!DYDiOFka5rZT4*;h{Yr(ou1` zCU$;IioXCuRLdh%zRll^;qi8%Y z@q9jfO=+@;=9R!ViZ|XJdt76k-AI8VXRtt^mP${&9B63!L0hD(S-wFy0P0QATh!I= zb$!b>@dl^!_H;Kvd+zuC^KQb0pJui|PH-B69snW3*HIq|YWjV=fE^CkC(Q`FtJ5IR zJWtf?5)BgeApQRF8kl!2Rd$4I=Ny+W@$sY`<#n*UJ-=I0iY%?%6`4_#;H7F3m+xO7%px9T2j? zDD}~TaWOuVwK6sDODpF@Y${^~9L=7#gP`Nhsz)Rg|&}zmEGoT+d_1buunq9SC z;0amrFnMb9$N#Vb2EY}H)Z)ifmcck0K1cqz2Nn^Vt&x`GzxtHE=g!bO@1_tx_fTbg zvRH|7;jI^V>=>4ab#TEbBNnZgSXCnom4@d2+=pdfsg}$^FXP|lFt1bLw+>PrXx!pl zg}DtP7O>{_T%!#D4!JG_6hameFTWyo4X(O^Pl^Z5-_gr}S%L!x(S0zf7t9(hX2H4? zjOaW~el<&Upmf`F+g=V@ZrT7i-C&xsQi4fbrm93jPeh`<-)(H4Hxq{WGER|bcLjNT zJs5S1!Kd9OyiCJS>37hKdTYOT+)FDNb#qJ#PFImxZAsh42`wh4$$gJqY068s-Elqz zC0^3fY{%8o3TDSiLO3#_VP7Po2rSc&$_hfN#@-^CR*()fJTkaWJd_2=hj(7dQMvH5 zx|%H0I$#U-Mr!%)w#k{@rYvhEtnQh6+F(bu7vvs!*I&adGt|Wb@Yv=kB_ty-N3vRF z52F6X7e0eN>|6H)|6Y0J`WQ273uhVE7ZBAPYt75syEELne5@4D&J$BqlU(>BT$88m zgf)ijf%X<*e^G+2Vn6;G^Kg<8Xg{iRmF|aDuYhAGOr)kr#iobqk#HeNAWRVtDa@q( zbl*PqHf!+j@xB3;80_^X5R{%>#`WX%j19~U&7zUE5}=(4Y#A}x>&}lb8FCq(swMq$ zh^J?mtl7BygN}@Fg<)ZS&r3ZT|);4)wHSGpp$s*rQ4?TrJBoLrD( z#_;?WyDz?L*gS*p0AY2y_`5m*+--vrGS;K(3gQi%=-0@A4wLgi0*awf%zYNHFEsA# z+suT*vv2Bm1`=_QfKM3q$M{^$N-qsHi_i_F9#O=THfqD_)0 zM_SHf5UBZ)wB2Wi>MI&Ti*z}0>;t)U6gT_m`qtTNSmI@qt#17@udL#iRv%m$2^Y0C z$%_r*gy%IyZ0it<(O1fyB2rN(95Wdz&jYE8GcBK%=aC_RpMB!6E=3PRUcF`5Jm|eY zc!IwICW0_sy4i{n(``49)@{_ z=DUypV}xhCr7QchgOWr&PhzL}TF{0@eVW(G5I@=UK-gu%L{ilNp((!$1FV7uEKUzN zk2-vEUcq!;K;T}#ZN1IcY-sdsqbS}0FT>8Bp>UUZy@0v%Q$vGxz4=Ojo9-g1McqU> z18MhD5ONE6l|}D%@kD5abn<}+hxl<6`D3XXnO46SGJBy z3>belk;rgA$8dfbAdXY&mv1i4OD22(o3}1xi+E(ok$cM4D&L5MV2e0q*;_Is?I$+m zHmpzEb70~Z)T!vM+61O-49?{gyE6+_Ikhj%}0 zcT=ecpmoAl0ymXM2h{tWw_=Xqh*3!=SW+Z%>xPzTT#|wf^mP|xT50qLLup+2YD0lu zD7xB_m^ht#A5P>YBZh@LtsymA?e3}G66`bzx2;sN@2nvV@MFEn-Rs}gQP@wjDM8#{ z_9$A%5^>3B$)7@dmDq{l&tF$Z8aWE3gNsC+<-yW3&v7(p6fKF#SFwzz8nvJz*o`k@ zAEg?c3*c!cN!-_LAK@1c<1<{5eTFm#wSX2Q2awjCri!cCa*!|qWt8bQh`PcMQ;O_? zKhLd|+Z|gE6J7*J@s}2kw5sj`mk%zDVu@*}anRPOw?8ALBp<)aza(eHTvVV#N9HlQ z5=!u$Y{$QFgEHs*zFq$H9q!$r-ipap9#T_48-}nd1Pw7Kv0d+tJUA4uPSuIVF^rh4gM6kHr==P=N}C9n;Q-{a|c*HSIG<| zS&z&7p|;hrjEWusJlZa%B$LAu4tz(?w?}9Rr?v*Us<(U*(6vT}8)9)${RTLgk(!NX ziq`885ULd{&x@EB1vhogdu7)<{^XlEl=Jz!lONXt`0HiX%#mFre1Lxot}u>u6X^!) zp6Z^puENv9HxCj*HI&#WDa%+~LqJS^Y>a?tc<>;`$l^HgL4JoTKwn*QzGDdE1q6HH zo-613EA#!tUBZ&&)dqj&sMthr^dApDFr2+)d0o++>A)7L5hU27Gh%>F@Rd62T7b1Y zC`PzQqS0cwnBAvqNuy}uai;nGgR&nrei}sYcuy|3GN4_BO;MF0iXUKPEP@b8Z6YLf zBNa*?Wr7S+qja6D1sqWGkA2sd*bVc&VVL{sTpP!@tJ}**>1)RRxnAA0->!R z0cLLSbJ-Or=Q*hWD2rS?d1E}pve-|XQoqY}5O3nUo z7vCM!EL2mlU4@t{H6sNGz`rN6nNZziFeWpSqrcj&eQCKB-{P-1Dp#><*IHFcbv2st z#s|Bp>Z!!+S&0$y77U z?sqohP=~YXy`gJaYs2y+XSCtw;RY`cdRL22DEp2xPa1xGn1fPPlfS`DHYS>RN&fA1Xc zcJ>JIF&f7tzZF1+RU6jY2Z&!8u_~}&nJp(QY)P2Y6tN0shHljbWwy+GPqch_#Kg`D{y2M$4-Wer5_; z9z^G?TOO7PI~J#|nuDwY0_bJhf!%9njUkFh=b29<Y(+S&fO)){cA~#B7T$0kyU^ zr3~oBrM5GlU?ik5b*R`W^2qOdRx-g$+wwn6F{fSMMYlz)~q+LixB-PwZ(XNx!t(ak>kYhnv<*;Ba zppumk6wn~#${T3Z@G%+raLv-2ZRw|7|CNpNIe=y8s&xX!5za} zS4ZMHJxbA$Wrg|W(fcY$Jil-ST&1BI3K%1SH3rJ14&g}`_@BS59_}9M-;dhh-({lk z+`XRM++5IFzGDfB6{;>?O9f_4lO42VJ{z2Vo5S))=9ubM{JDM`A33339|zYQdaxF7 zV)9NqM+~vfhB=MATonY+pB>2$uxh~|f_3;_X9%sYPcniwPOK$oV?e&$+3C#dR23Up zG@|Fw_!y}B2@=9Wa}8-;JRfo9+ud!WNf&hPd1)Kq8YU=AvZBkFJ?VTgU^zgx$Axh= z)4mbwR(<0(vMbqP3}mzwlD;bR(#cik7rgV;O0b6JzO2I2F^-JXnWo23^&g^8MQ(-- zf+fLCbWh`IXW$#gCbJcS1Nt6wwNF}Yz^yof+N6!~L%`VOz}%7pFJl%Bh+0z^9`(c)K-mU@0ZHF9UA=CE^D?&vkytg7Op@B{X; zJr_D=33*Gd^O$+e6}rg0;2tK_f{0gGIf4{moHQpqG@DFY1F_b#H*u{QFTOMi^25*v z!a9OR0aeAAm+4!CC~I|L6*$6~)aIw2=zAnroNJ7#@x!Ps7WINr@lH6}D7>fz2jAeQ z>w#h2D_!g8w2!Kr2>=5prw5uW;2-9oBDvEw4z%c8;)( zg6fP3cVGDIxvgRqX0o*Eh%!muJBb!>g`uxWYkCR`sf}?(=O{%v&c--GRp02gDj{t| zo}VCp@*<3J?9dVUIX4H1D7(M^@nlF1C7N#sn!o^)1?a3=)u|(!r-VUtFMto=c(+UC zxL7qr#1@V_%vd4#igj>KMJf8(uRE&F55=%F);GOv8W0UgE8n1;M7ZJ=<2Ly+XF#?t z5Yu@|LmeuTF!F5W%kz31*BCqIj1h5gbQr&beQm9;f-Rd4zibCqFrx;dj1E574H>GN zb-^}14G=ro)F2;y)>leN;B*D9qKRyZCJ~?U>I*w!^`B^o#v&{M6A+N)U?A`nMyaa6 z#kjdzJ8K&>8v2;`57v_H*0u%bxng#10KJ>T;z_n3aP)&FX8sv~YtZ)lxB}q|{c&LW zGa${(Bvvs~=NM|vR;xXQM)mi(*UQ>vnK{vE*1GFUz5y$aWEA5Py|lE+okKce8LC^% ztjkwCXh6WD<|Ne9ah)Ic(QZAb53K1J$QFV4;KoRUr=j4v^O>9t)3#Au6t&r}(gpkQ{SQ3?^@@y0J27!t;E=%8V8Bp)nb8s_6YogPo z>E^CtzwGwa@VJ3*!pd@mLBYs?hXknc24bD`gDKb4lE37#`L zTJ{!wu&))~s6F}VxVTsST>2fjt09J4R8h_)zRx8={`F+T0lN3W#AW!0o?a~y7DXE+ zBiG|0+|jfF(7F@bD9eGDDlWXl#h~PN$A;c144Z@Hm8ZkbL3agRF)N$R1qO)V<<9L7 zJ6@k=JOo~fgUOyagG1X)@uuR_&F@~IfhNs${rpcO+Rir%?)>B# zI7}m@@ZU9!)y^#IGFa#ECv@~SpvB@yd--|Ce|}^K7u=Y)d|3}Sj1?zx6_@|#Bp)VN zS5$l|GkLDsRXz|(m-%BA9t^f$2Pdl@C#D)m{ZUNTz5!j;34pi3E^bowmO&XGrP%+^c6ef`tb}WO+%yl zMX9g^->9~s&G&dc^?|9rz&1D|c6UuZ@EtS7!9%zfuw=L&>$bR@JJ{jrg`&4VM1*WP zvAiNBVRfj3&}6rwg14g)4hQ?KNxGpA*I|P!5BKR|(PMwCljW%}@?a`U%hG zPle=%h``z69NIe@W~POFw_;Z-m#tO?&e-Y+8RxCDRsTfzX1nSeHNGA33Jwo}!GX^+ zXs%6!G_M#W5I))u@DyRNkSIrHMZoWQE>9uFU$4L8QO+LjAeu9vb{|^1F}Bywx*J6? z4UWlM3%8J_Kh=~^d?VuF*`rgRe~aki2ndQvcuX6uroh=s7j1mkmS2R|DLE4c02L0q zrfTXQ78#`AL?H0k7t63-cJ?i}OK!q&RDy&(*+RPJumCX)i5?CsFrGV3&R4k({swg| z8Yy?#G6iJ?(g;dl76tI*B?Q7Ejrhns+onwDrE}ffpQdDU6r_pfbxhKeMst{Fks!rp zms0cIucW5Qsq*9FacG;nM9M>A#_7qkfnHc; zx6ACB(V?YgvnLksO`G#32-No3zOOKCTndM;hcBs!`*?6(YGQeLAg>VDG>oUwN`YFU zlA)T{n~)&QP{Q!(yBxEeRaiV)oC=l>7S~&|`j&Rmb;HBu&cmL&)}&2o(1ZI+iCWdy z=dEa3oRo#1DOXR8G)qm=UY?yTntR{s3e{A~J}Lqyv_-oy_ZPclgYQsjp{fO!@8x3s zrS9+NT|Nl6&o0?Cn_Zkd2?C>Ji@UquUpXPSB7%@O7~>E~qM=^4aXRmouB9}aY$ffa zFRsovbhf&lITXRW!XkeA3Elc(>i*&l>3}Qxs-ILEiBrHoAvRnJhv3Ese0IElWeVK= z?var2OTsYO9DeEhPsrng$azOB@y3<{n|+a8?pibw*$AdEqL-P=MmmCMM`a}T*ZuFL zt*6;oe91y~c|oK3MDN$YzO-T4yxCB8FQA_nkLGmV2zFJnP^b%FZPNzOUw$kHhRNEB zC?$t4+@2@-%mDDbz3y$j9ldmqd$aqjrOVP2e(~o#TNpnZKQzrF3Q#>Ep`eZ*=4#3y z1Va!3tHlZ$rvXQ0O;TlX0be=0+ZLNTi~%1w1KaF79q>!6Gk3BzWHX8l%ug%8cOE^c zj=m2bq(oWhk!L9T2_qeLAiVv27#@==G$vLGCm2a6TOVFa zC1kqEwH??;QKsf5Em)MRy%PkcGb7sj6@M9Df3w~-t#bDM7Ycfg!rWiEH5h4YCffN{N%Z)1jPY$qx4XCE*o4ECS)zdHj5G-2A~ z)37qpl3T@rO3QgoxK3{?6bhUPWdu4FM8M(8%-}P|%hM7tDQJhwyP<~#pIWd_M`9II zQHVf04qmMpuS;2-u!YSU#$%|`)F`Jlr~15p6m4eNSWY0f)Z*!5q>@HnnQ@h?zy$uO7?H zlW<6oXa>0BAKF@*`u9}YiaZ&QxO)3J!teVk$`Pq01|2gQ4l!U#jPSn||+H8ok#BV?K)H0G5E?}5};59X4Zii0edxz=pN5>;L@ zg%ZCOsyQR9E@yLz>;moATtPHBJPWs~9mx?e$4H(CDx(fnQt<67TI_HeZ0VOQhc!khlBW?|*8wbh0pgLroFfoQ z_&H7_A#4^qog5HWX~@&2$*vo!I7u25X^5g9pxO8cla(^--cZ3=A{|9JWoCeee1byaz8`4q1B-laqkOe+qza;ZleqQi4|E|I^BUEn0Ej?-4so zw6=cC$%cO`5yT5p3E8=5L$%njZXY$IP%K~ntcNEg*>)9Rd+Z3GXOnGP9Ca~|VJ@)S zVWEhW{DmF?TlFC&8|h&&1B?8HDZ~dIPWf`_2G@mm*5poBL?znM1@{#mdpF@Mpu?#A z;boTya8Dz+Fp7y?T$+pZ9@gqquL-#hKczq|5eeTKY`hU4Ho2o03mWwaFYnc-r=>$l zKpX$!E}f`=&n*=Wf9gj?=hVfvp$!T$23iId(h4G0;w@oG<$ykb9;ZuZ$xL%wT`GI_ zG%)W9$mcsOD|HhI`qe~8giq6FR!kTaVwy~epl@bEE#NchgpG{K#%z1nvu=_8#=D!? za}#jeHH)ncLt(eV@A6uUrjfDf)!98(!@wwQ##EgI0!@b4(?fy%uJIc2Q6!@dGKFJ3Qy0xl-V2sjh{}NQ;n^X*c9^==EtxrV0VJA{7-+#Zdgd zdB83*dsbJ9f9luJ8RH)v_QM~xrJxyO-O#l~a0CK!21#i5`K z%+IG10@q4r=XgSswR-X`MHcuBg5Vha_Qhwpf=O4{00H#QJ62p~N+AFN3ISspjmJMN zS^=G)c^OflL?4@&M92xi-CfxBLR&S#cBW5uF89i78N76OW(ejo(%p1nE$ZHz%ujYX ze*{I7^0V4n^kVO6RMevWLqKm!PYb-s8rYfOg0th})&1wR9Cb{rS9*8%ExEm|cKVUO?a-{ucxEZzMw1 zl2vxil$0RheyF#=g-n3F3m}l}5Q&BeWbj*UHu7TM3RZ-1b2~2Z>S|m~0>P2d#weO8 z%7gP5Y>WL1j`_CoagWR>rr1{$-;j$xE9rV{VXCK*!6JOW2dlf#1~FRhEJq{l*dZ%e zIYn%?mOtalRvkzW0RhMRM8A&9wp;1A63HSo4%JC)C?)G4U+FH0V_YrkOld61`BfG$ zFst^e$JbhYr#BX`H>;sAfk;BhR4Kzbb}+RGQoglYj=YR&ZgsTQ%pFHz_-iSA#+dM& zk=Y`!5anSg9QPS8rE?M1qzt^2B|HSNmyR-oL&KLQVEU$@C7H1+I9$V}rqtT>-smG~ zVX|Tb!*rUWBxN#t;UdUe<@5>4t{b|?M8?Fl)Ig~wGa9ym9C{@9G!n-!4L6xQmpKHv zQFPWuAlGzzn_#C$EWUQ@b46IA3}4-+*^c)3jtYhg@z$InK2cGQl0q3jSdx9s`2^{BD3HCS%rW6J75O17 z6_N-FuGYBi`6ObDURVJx=J4d&((joLkV~r2hsNCqA}Iod)s92zxY`<1qV=J5Nkt9A zJc)t9IF!5*D{~*VUtY#aKBZwyU2C6C6UipmO>luVz@025gMt7C6nKSTcL1UFTm9Rq<7$0~)to-jH>o)|DVxvUmG6%Rs5*i3KTWdfc>Qfvn*w?oOrV=?mXHYBZ{ zLqI1GvSUcI#ElrIlrxxr`B-B8`dQVlCj-36&STCp15FiT9?_x9fhEu$7THZXxvG7b z-t!)Qj)06QD(l41xVOEBmd0JraShn}7N;LPgNT`h)KY|+*qTl44yJ7GV>=I+Z&om+ z-(9BINfy4_+gU^aLwny!YFQFYPxVe*hJ9JQyLa%YtZ_v^J3F7v+fi9HGv>0RAVj01 zGs?h(LuyFG7nqdi<$VSXeiZiAkUVMiFaJSfutZA<3Uez4Id%3`v`C((5#$HO1bLGG zV%AISfQ4cNF2$(;9r)*XHWFaVbQc*)GG&MoaEKqR-=4*9q+yhWcv@sM?qJRlKNV27 zdtyyiWWtdkZ4a+OU*m|@BP>8Aa;rt?k`$_ilE?40;j8=1%B^xGg$!%;#NesGudA## zP;x9m;Bq(U(}Cyf){MFA2j*rj%R^ni7dF*31+gh^KuIY=#dlI|TDZ{b)LyUw5The_aUXS$m)g;T*asXvz`EdfoKP% zl0mK>T)I-GK8j!y7BJ|FR7h=p>u$l&071hH$$TP~fz@}-*1HJMZv#?Hx!Z)G);@9I z;&$#aABHl#Tpd>CM^*)#a1iYtupMZuwHztm#vie|8gT0MPH$pAz$c3J!zFT82b0C9 zzjjXf!z8P9tSY#aiO+GQXGcyaX-kQa5z*`a05R) ziAkFHTDbSrDm}M!$#D8<(F_wX!GkbJ`am^{1~h%#Pqbc^%S(nAw>3EFwcwvnl4D@^ z3)^YiGSjVyP+Sg;7X)KmKiSakLQliz3p%Z2(m}C$H0^KY7RzOiOWKH;hvI*1g%VjI zVOAY9N`$&g7EQ#Go#~TlH|S6^Dg`P!`LUv)0U@U!O>DrrL-?(qX;sZI2(jc zbqgr4J#j9{MPKf;#q|g_hvOW4>856DM9_wL)0rhKME%ypt<$+;6sIjvmY2ePt;ok9 zn{du-N6_PDCe*S7X?N8))Bp+NtKCZelDCC&!xHkynAKqlcreBYh(4T#0KkzRXHFaQ zRBHIbIIBU6X@e{-32J3n=n1$fqK5jN%x46@u$Lu@j~_|E9M%NU?oX7{+sQ0VehM@c7P3wA#rBLu@~$1ThlZ0j<=nJS z!O$+82@P|!K*C}JS$)79GHKKEH^^GaLC&*ztE0wiR`EenvV#^Ok%=e0>HK$B7Xg7+ z0EK-?vMTF${PTiqH|BHUP+uE%g6~LAhnF?6e=4yI6c<>h(y91!MO%450@`}FjwcYy zY`ol$O5>gJC`IgTu)27d*A>42vlbV4WpbnEzw&IL1ub99+Z}#Vym@x^Kt7i-ID-6a zB}Braks>8klKgr>Ij>SJ^EtGe(8N7e-+Yy5#-7t?-~^46-$V!O+!JTvT#$nh7AzHrD6Oln4yQYXy9! zgQy-}ZYeK=$s!5-$zuc@>|Mn$Ck%02nXe{d*DsG+r|4;gnQ5d&RTHDNI)>DF1{6=T zzC1+tLq(=ZKh=w{UhZLbkV5epIHo1bOS);2yATWfobqQHwxB|H*Nf2Z)DE?!j>iUC zfscKnt0sw;F4CLoo0&Zo=L(7oVnUDi_$-h?Mn3dh;Z(H73UX{w-}@C9RVWwB^o*F-D4PI&i|)uEl1 z0R;wwYn`$1brn37NVXNVx{q$0dy(mqDR6Kx>&kjzPpi!sxEvdE?lo;acJQ}kHm6U* zCD#)>=8Fz4i(Vqv8Sz3oe1Em4cGfVv*hThQfk~}MnQUxa#^o6>n6t>|=egh6dx5u@aVYqnU5z-3GMEBBgGpX{57H38QU<7cSik!mKrZ0!7ESpkGKh8= z)g%}iyYe)+>fU*5v7vzNFcb6Pa?H3uV5=|a`c%Mf&wTApxMZT3lI}*51+^Ho6Yo_v z7Jfzzrwmz(Q;HP{Z&48_WpK!oumjs5GkW%Wc*X1Pk_$(2r0mZGx8N3NMdI}w562>p z&K6UP&y3Mpm_!W!V;HVz?w>^q%XdkJ_;Ub@$M zt|pIow|(|@%PH-YL1hLoxUrr{>~8OkTXjwEW@0g6DND!Q#>OfOai zA(*Wm827jWtFVfzHvzsIQNt0(4Io+1vCfDKTtC%aDI5}zrM7aI($MAE3ah0mRs3wt z8`^WZOvd5Ng017!_`L*Hy438Q_TCiV0A^=7mLLhR7AS_jG%ETB>$D;N3C{_ZS3c zONxPAXp$31IR+-)@}6GKOV)d@xO1k$G}z(APzmY%(CM4p!hDWAK`XsiizjQO_5~5iKOs z%_kfw%Wm!I0H|J82f7za1RR)toPRk~t=vl`=Gl6YOVLLq8@VLk;p_DssuSLg;`|~V z+pV0ZNHjU};!{_M15aU?I1p)&M&LKKmw^>=8?-&%)xrEDG(B(v3Z*A?waY~8r0dPg zH*cWx@wiLe&Ugn1lkg6(#z16KlaH65VCeF&F5vX?y`C&6aefS3SY$VA8MXw5&Al57K6CC52X_n0eiXq2RGse>E z(a|-Scl{XvaXr;3@QwWO^~Wl?C@bIFu(8zfQRXeZ>0`PW7YZJFNqPD4wTezib#{)U zsmitGO@|3j154{C7@rVfPO!JCTBVmy)&N#`*m;2e zJl+2fyQ2Mv>Hgo7{2%noU*HXqzm)*~-vZ;|pOJy_SC!xo z>3%E=*?qPvPK5WKS+5gqKXEM1&t`#4)qUp5tZfdg8RvcH-Vhsp#;EZ)vwjvQ-Y;L0 z3`k$;u<8b)LH2i=M-SXp++;R+%dM-%RwUXzTt58r6ebboG~Vp&7RqIZZ%qkfx3wIP znw#s32j3e@WIG*IC_No#n99EI+$d#u`OtLY;0Q7F`UsZ`5h*-mB1>>7g@C`m$;^j< zo1}z*lcLsy8laomxp}$5^)-w23z&$I^a|B>qu$e3#gVcZ%u>lg#?&I^lXAT+@(C|pz?$3FM6pIWn%;6XN za00us6Eb0sq(&t(5wOxv#tHLrQ7aG|Jml|uB>CexD8n;&THd0KUlTqJCq^csh|_#| zJ3<8r=ns)S63Flr>3MQ|`{@BsFD4mdgo4Z3G6vonR5rAB zQj^8B!4yqekt$s`g3Uv=gWS=QU6^nuR<0W@Oq@KiF~5vj#|*8;#N-~Wqe4eoeFjuT z&E}VaGHaPGTdIL|DQ2*<)}orsHpD$Cw_w}QTc$($!2hYKOU5kTqPrwlO-NGp+Z|&2 zW%KI2swwlI_R9+yYx@wOd2mU?<|FV-xWUVHe5{4hlL#8qW+Jv$YfzU37Jldtz zVI;$5ogkDLa+@Y+n;?-0CUh6kZg(g@7Csa{G)-7SVNESacT`3NDvYjSOUV`HD$RE7 z$(e!3i&A+33;s)TmJR0aqDBNVsb}UG*BkFPYnFh4(XzkrTjDpb^ zyk37eGD;z55l=}EScIO&tO9_AuYrqo#c0ITK!~wHcy{SWWN~J;;=plbqNL(NtChmk ziFfM7PVrk%v(ZU=KW9rgCyqITyKz)stpBprKp2RooPEb1MT-ByS3ndH42fbKJkK^F*ywT+e3 zUZ;e@NK063PJ|oGg69LO{xh5n~ycOdp!TF&(x3N8;zsAJkAd{Ir!US8foeB@v zyi5UcT>7&#zp@{TtytetNU79FJ5ZN!OcfAivR`=;*aAlqp}~=$TxPk>r&ps-c|K|m zML#$t2Dubm&V+2~w*4M#NZ{#Um$3bbiaj4)Zk7Uu8WmgTifatkXqURb2MzrPhi69# zP8p}n7Dc>75FhO;&Qxqef31BRsqyyDyC-v!>1!IZn6panAL*MoJrVgZ^C_E**VmOZ zKV?aq$F}Ne>SCNCB2`^3S~rDf)ZE=Ox^)tIZ$`}gQXpSa-)d@kTiGTycOZNut9ByT zg1eq}Z&cfMN-~KX`tU>Rv)TAsUi*da5Hr_yssTw(am}8|IHiA{uTO0FpxwJ}@2|>~ z+pdS;q-5|MFru0f2!a?ghnt1#$pFYn+UbeD^gz}FpnvYcYDdG|a9lKS1NK|0k#gSX z`5vdQ5w7_iJ--dJk5I|>xyRl-Db>}47pn}Wd}6wIleiB%teklg@{__X#nC7?e}NWNVeU)-8D-Nq3xi zq)B++1M`AaeBPH(bu(jlf!E$|te|T@vl_;7d2w6Q&PZSXj28ctR;qH5q1WGC@a&n! zee$F|@K7#!;xLjJMs6WNki;xvZW_3l6B?t4d61+6V_aNHX!mnx&O>Q1a>h7$gbk9~ z@H}6bA)j$xlydgXi`j36ikvWkAaHmayAd0-M5Bh>WRzrNdk#IX)H3?}5db-5V8R`T(7wK(_wZ6|&(lYGD51M^yU)!T zy;u^J&b`cA%R+X)a8G*L5SLYm2pnvv`3;swG=KL*qi-U#Mng`JS1|Gc#7BglNr20V zqrjXoP+M6Q&{?fe4oJrN(#kV76Ew3vvv^9 z3u`H0!%_0`pqV&dM~O_$Ft-8A4v2w4QoxsuyMrL572*QcK!$LTLK+}evd{x&^^s$c z)j02dHzz7GAmTtNiKDOa8$gcpjAJLM|AH{JA-v|MvV5C6LK)~6glQq>y2)?D;{}>6 z?zW0Cw=^bhq@*cUyoIJT%7hNG?2N;l1S0DNIFqY2wNny2FXWawPz^&Pd3?A0b?8cXc8i+CQQA1r&WU~< zrxj8ZqsxfGE0HgxI@Z$3AUHhMq*4$c4Y!4cvyh_C#a98g88QW?J3yw&QVUu_8EQrr zlW%D09o4THnVn%u!VsG=ses?h2AVaM)FP{|l}LIT>}eQi4Us;E{qtintwBED2s$T8 z%Xon0KpL%heKG~a$u|szQ5C`2wB(sni|Q3hdRG!E|5Q*(+BUs7j-pFL({3nX!M2*o zmZ)%TWEd+)+XKuft@)a7gPH1ar^D_xq;!HFDMP2+_zISwcCQSx6<@l=_T2jv%&{@| zM545VMJ%0b9(AXg<1=H{CTu%lKnT_@l5cIac+)OeBOt0KAY&=GA<~B}nM!Y^%~9L& z3zWk_>}V}6J;FHXk2k@)<3LY?Gw_6~mDmipM!{ik>c*UmfEOp1h(7n!uQqO2?wYvd zI)=Bk?R2rZyujR6B7wRt$M+K<(V!v6Qnfp!FOrN0 z2^fmy<+-Om_KNv-k)5L`rPXnjSkrny$+4Kk4c}j+Wgit);9-YMXYnD4W`8#7U2Tx_ z6&Vw_iQBceTVp5+KvK0y2;}Q@Ws9T#5-L7697u!rf&LJvV@jG$RLA%}0dh(pd*fV6+oba61mSRfzU<3T7xVPdHB3V0jmg)O18 z;FFA*6p-F9vqnDB9P7@y+y~1$7>!we6YOUvGDH7REewZnN3nQ{&&h%GBHChX0ck6F z*!3Lg)t0_m>6uaudlNfetaYVogB`pzXQBf8R>r+$>}G!-xwa0oZs~?qH!Ajp=Lmal z{jPf-*{RpYB_O=!^r&v!#yE#CyhfYn#Q1YTTb5&6xm<`$7$=DYLZfIzVLP zNXB^|A89?I{K@%km){Kls$OGcvrc+R1FoL9G|!?5gwPDRcU;z}Pr%af5Rz@L_Y$?BUcI$F`neB9wN|HapV$Hx4jx%kUo#~(zz zqtRb?JC-uCHgPol@E|a<{(0F`gPOF>x(IX!>akC%fk*uCBbYycaApoaTwf^g4cvaU zozhxp2d3pB-_^x)b4J5bMY&cDxo&EF@pg2f_=WHw9b#X0aJi{E_BegfFPIlIXs>45+9cDUzRARk*4bl7Qga z(&Hm=^dNcod;7>a2#iNU$@*X(>H4a=jUT>^=+qSKLXWpNh zsaJn~byq6s?4Z)A-s!!v*8=Ma%mO^BbwK%H6VGJQc$ zH=1P^EAciBb8y_-gX{+kM&>941^GeXGd#+c4*}c>P6FJC-axxM0pzE-rX$$`+h-ElqLp1hpwe4gw6{4qJ3VY}>%nvTlaZ}Ixx zdB)Rrb3N~3=k@z}l#6pPGlI{A+kc1W!$Uj~I`9_Hgd2Y(FySr6{JX&T9r|8s0l-Zo zXP2&onF4FuNbyh4$^8!#&3szrvT6GU^mb*Eo~!}R_k}3Q8Wevj3HqQp4GQB}E_4T3 z(A{{xH=}qS%)+U~x!l;Ayge(k46CyYD|k4~Ap>|g44`3<{~A8N9eh07(+q0pIRfdY zQ7|Xm5Ndp@{{Z>f`O5fVHIm%u0_VMW3yXw|uX(W?NV;cDMhFJox`G^QBRv=->$5cz zR1$Q$bssX&U(FNeuN#g+lg1Kn<9T=uVPRC11QAi^e0U_1rm_fW{3y_ILcxZzc(^kA zhFdJ%>D&Qs9+g)R=C0-G0e2wMXv3rBU-b1Ep%NgJuhWU6Q8m)_^7vtKR!Uq|qQR_l z>ZyPuvd-51V`tRAnn%_hV6a=ji#%%&g&c6qH7AFj0?bc=9O$h2T>wab8IXJ?7%R;C zh=EA4=!gBwQCXs;!riv-j9nbuxTx6)~7|3|TSDxObjAU2VhNK7W7kWx%7rk2oXXfQUJN5fdx z+r@ODxKLawG0!i|6#+tlQD&B(=NHk4Y*02SpHNIGp_Ecdt)N!XsQ8bD=4yJM#;qzl zR%Wa$nQ6)>>-5SJQ>U$Amt1`A zWtzS|z1#9Y+tuT{*{QJ&W(}j2DsQhF!jMeX%1S&hYgyDe+WF1Xd-aqKwoYH}cS6z3 zeJj#kdcPXJpYI>xX!F(dxSS3S|NS&l_r_fDq)y+yuRNZ9c4Y6>6z_4|ZzVxT&AMD} z$f;#p^`o(`~wpX4}ph9`cIrFO}iYnxvaOTDs^kstDhKi3$d9#9t_03dzl<~0p0c0T+0hz9KODL{{CJu z?ew_aUER!a`b};^%02kq{j2z+h4oJGeK_B8Q!{H3_OVy|rxWzih;tHw=GdMtV@+=T znbt;{GtjR!mrQde&Xy$(uf~n0mc+#wFLT+?)kiAu3#J4Is-$+j`%*ja4$jHFRz{)`XkM4+xhMt9to}TO<--?W#@&CWY{|u@9AC8*; zy2AhNOPE;ylZxZNLuw&PleR(h@Liu&-qLUgBm4{E;1uz~2XkSPp8!L;ip7T1La<*x zF=!+*gbGsru5PAgVpZMLyT=tb<*&Ay3jA`FniBs~LRkUN5M-MPvlTR=d?UBCm`g}= zNzjB=g_0^ONF1cQ;k2$indXL7Tg2Q6cd`=nEnNzuYOCrT99BNSFy(nnh$YH`Cs;ix zo~_pZJY(BrNNLr68dz|s4V~r(IHG;BN1Ky4cOdIax&R_Fc_CurT}gnGd#L59k4k!{ zjT8VynMN~(Afmt$1+k|)B$TvI%Hjeq-7Ir z^)!x|rOVI!R{vjKi~kug{@*)|g^iJeo$mj94KUy{FtE^b{9l35D<3HDR82{nkgL}`Gax~|&+hA6AHU|?*Xsd^cLw@89&g%MnaubuoW?^fDVw;@F&CaXmVWaR0$8cfM(~ad8g2%T_`4ofnkl*zN{%-_I_&wD#G8YPomW z!sE)`di+&Z|A)A6${O{ShDIO3pJtLFOxu8upX2M@GsfSACb*A?x>lOJ-VU8B<;@75 zC8BSw`5y0|7QCuAoO+f!ySKBNlS?QS%qXzUP+!%uJg?I@RA}m_-yc z<{f%I!ZaJI?(i{R>*9Ab_S>+iQK^0}% zEY=OJ9lXZE}+#pjxtbjIsu=-4OxNW%XI+a|hwnepn zoA&IEdf>mnk0a_P=Qh$qJhzvCzTf&; z4}V+mni|dGS9Pe-TK}=!1nT*(4y;<?0_sbp~#`j9Ir5?n`fv)85 z=o#azVeKDspCKunETHnD_tPw(+Q2UU9rbzIQybpf1=u_N)@z0PrN*yOK{Uag-OKo$ zz;z-+R@49z?y$9H)Yc8U!;(EPp3(;NJ;JH+~!$Q8SU$0vX@i@BvO46#t6RFglO8ZyWf zSa$`_CoCsWYn56uLs{|u0+)o5M(`k)Ym2T=$V;A-T0nYJ%G=@xAqpjQh)M?0>O`zs zOZMEj|4{LdTwK2VyK~RIMskogSadjQ08yY(fNTEI{HdR~jd50(kGWg&|9)=2rTox_ zo@cdubhL#oJABF?%FmIu6w{ zHc@pY8=)JJ*|pvUW4$N-9~{YIA!Ql@N#-N^(=WYBOgfbk{rY!wYuP9rSN!5=YJF=_=A+iBAbGeUlW2ZsKN zHZRTQy^h)Ib`Q~$(RoiQucjX4_|oI>|?lli*x?S<#XDRFfI=>bQQu$nsl zx(*CUBwb#VO6RQ5`-mDXPH8k|@i@`uZ3_mT6FT=)7yD3h}%|B>0cOiIm;-FZwoQN#5;#oB=|5I$EeOPHyDQe#- z8>19k{u=w@zKDqyWQF9=i!7>4D~UGK3@u$sesN?(-%qBSR?s<=a#5Co^B&MxR@aSDtu{gg^BvwMVQj#H`vJxYwcD!h{y@onDKWD0Cr`!9Q>L0*XR&gSOW<@igWu$AJBvR{^G~Mdt`8cfES&R#} zapz!Wlhulfvl|G%!m=@kwtHsrQXg|RM>F~a=wViMDdn=MNVj}+`kZ+nXmA}9fioqH zMK?3mo4@Fo**>*A-3G5l%Ht?K;C#2vX>(V+9>5TjVElvr;2Il%(KjeR$p$xTR8Ln} zF>OT|vPFFPsr)Z>`tc{??hA*EuUmP6mwcW>#*Z)~rSWJ$IOxZF=hX4t(dig?UTr^O zVDw(Iot@9l#{UyrhZGBaKny0_rn9u^Pk-y?@!>YMy%HE?Pwx42K|>5DwXY*u8#nI` zDa-dMiv&~2-_x!W!Dm*mlY0OgC-Dc223l`JnQ;h~C`ljc_us-?yoFU3&WpdZ7A?!} zo1jKotIiS>#duBvZ0SY>Ab>YY+2KpXV1IX_Ii?l;<1VUPmZ)vB!b?E$d>~Y&2L^Zw zuv@{aDW-PY(KJ&-PR!R+50)$*{dD>5`hZu6r&KSQnq{CBo7DOYNTOC*rtdw8=;oIV8y`Haa9T9&vRZlIug>k)q+xFf=BYEg zby#dp@%-@J-5ZD1yrRH@)Q2P=AF&k=pJy&f_N^^n+G)C_CzF+JUf%w;bHnO|O&Yi{ z&x(tKNL@+5It`!kM_g!| z)uM{W5NybecbUm=2Ea^O!X~AaGgZV0)J4wB+)g05QG8{8b=RFiK%jUKazt-AM1PJk zJDysIVl^{A_;Y!VbK3InFOp0K^K~F8ipzHVpwoq`!q7QA^F5|s?EWc^X`e%gYb#{b z6vQK62r^n-h>aIQwSbm1*8`B2KiahWtYE6mMvioO7Ypo*ZEg)krnuC^2QUiIwO1`3 zxE9CpjY7Qpy;eiCjESGQD{ZUHH{KC2sq%fJms;)?4)Y;~)xur!IfFt_z>gYPS+2W? zQFa-lF8#&ZtBVGYhKOks8QK*px%l-kP+ozxrHwi@4%8pAV8BTPbu4b`SGdgNyHvXG znYY$rEF_nLay=+DQkg?XW-@1)T*vm_JTNV+an&$UAu@I&g3a&B_M3oRmpIps0nEW8 zi~ik^Rok249l>Dx^>0sW^{7p=Zez#SNpP&l-*Y?6>tZp}ybbQ%u(fghB4#wv^WLd) zX)F?q-W}SpFYgcN4g9%+Ct*AB_G(eF*3*iIbzb@dIhxc6>{Dg15}e%+@rw&5g2V@1 z_qvBLgF%*c%Y7{G*Z-*o( zf%wi>Vd_DLN__}dHFXn+W#zNp(p|&j&d}uvkcdf-CIWQEzyd7m^t|WPl$4HO{X0Xg zw(^*&&f=Bd78jy^guMIkimV$1?Wgjr=b3Lmsi?r1ibjJOecIneMkxu0KcBqt(Qc!R z*xRj|KO95Raw_Nr`-Ym4C($)5O5Z@<{j;|Yx_hRo3US1SsOEZ!b&EYTo6){U+6bB7 z0^I`-7`lQE?ggd~eHa`>l;>$|hjrKCJdxe8-66~7B^5`@um{Iv{1%hC7R9Q`vl8rGcK#aAl0^kNWCxTQ81krv zpcSTIleE?>Us{_k)q>|a5G{ZX&LQ{`vv<3Ir^xCRSpy|H_5oJgr*0;-KCv_QwIS}MfH1zoL zgo8RwbvQ!KlMH^T@SOA>xju_LLe9?=;H3dWN-EYEj?s1>TR6-Fs0u}u>AjdR0t-60 z5~J>sQbqu*rq-nT_(%>4R>+GRwSY_??Vf6W;CzdqEt1+FErc{xc9)Q^#lZaFL}M1iK(eCa z;fV+&L{+g5jdydvmO!k3LP)t_ll8>1yYs2Ams$Z_GJldyopeuAUEVd^bX|YxPq0Q@ zVU4uH7~C{GL=w1whOJB{;0!hLny!b%2Tn+jA1aZ>CSoEytt zypwnaFmRvH;c!$NLcY|i?!o5sZ^jAyrkmnST(2JS&K+iYZ{&Z=%GiSN=!u!T9PKce z#cKu}_o?cm$(O7SSzmQFntbN}+p_1AM{tTajav7{TQK@!NH}GU6>m^FeicZ=~tB&bs3TY*h*fmo|(fB*UIVx;FQPQhtX)#$|)0& zb?WX$9vVHr12J9S`r(Q$@H&{*46NqsDNWOjllg`YtoePJTk^41?{&IS_i9ALuBXn9 z(gKWTEW&KyMiSeOre4dc<|QkvD*Mx1S1eEyJqno-@|HLxXQ<8 zH$|PWX}7-!L=i(isxHcz6dpG1?cBcJTWcE^wfHtcOV1?fI%q*2;w5%oI!2AXZ}Vbd z%AVdLn!M=3Ju_?qz6s9ZwFgvI6>#^oYs=m$)6f)VYHD7z=?b8?ffy+gq|+bd zLYWGnmy1&uEKF0Y(U})J(b4hqjn;|G1KggfOq%GHR7g7c)u7}0BVmevS5!&yD5vQe z1Y?GEx73;I)vN2*%oi}F(nPyu$)q2$7m8blAcAzwBL41tmTc@pw;vLeuEZsIH2I=` zE|8KL2aVI455m+re9H}dP5e{Td2aso)-C~c-e(0#V z+p<~4CCvka&e|^0!l|BF$zIW!kQ|jfoybn>&+oJr8@Xi~!kiLr!IW33Ztn!e#?#R57KJUw+A(PnaTa+J23HEEDWo63 znTIc^LB<+FC8#RoPmZ!ER4HQ@eSafdVaSV+(+aut0q{3wbQE$7wgy(znCyGfR9 zK8JL%)d{MRSuMGow^_bk60u&kS$=FOt0~JRH;8NyK@n{)!Yov-%taVkfk|f2Y#cdY zJ$G4NDI2q_+*@7&7iv}sojue%tgx&Z%a_fLJJz$EEd|a8VnJ=L7Hs|00qv zxD>br<^{e=LQJ50u$qdhG=b)(ZBNP+QP4ARm{0%X{uu~wmyLA5q9oK+RX7HHLx+c< zfe=;1Su~hW2e1p|3;0DPk0MeiZsjdw4&&KTzBx=!Eojh8yj`%Mn$jFxvX#pvhP)F>pO}yvQWCtIS-IU`hPnu&$bf$4J3Uz^yy^m>*C6m8u&Nn>A`NDW`-ZyUn z_rgb|Yu21RpxlwRQ_}8C;v+ojuvk;{s=>WcUO>A=KMKkRT3wVC7^aURq4MOzIh9&3 zO3Cj_I4eY*-9)k`N0E%=&GH5-xmysYZd#W{O880@ImlxOv>jXdis(t4ot15 zl&e;&DhG1QZ{1ji*drI@LbS0HU3ygdXF&_y1iR4y*=S9fHHgMoYt0o^|F*%cJ$Cc{ z;#c@>X!786!dwL=wXnq4<8zccLni7DxJIPuw$J@_?(vCG%20zEkH{11dG^ks3-g@d z2h&f_8d)p3@gfFj6wH_FPGnBXbE*L%d=S$US>cUGDim&T4RK|fH~3WR9RPtydVnBO zB*YvM*CA<*)R)+|O1u0@Wk-pu{Q5%I=d&*|U^U34AFIhI4c6C02{)z?aVifaT}EnO z4{af(DYu4*Zaehd5$t+MfR|tFOvE$ES0L{I0={wZbok7N!*pBJ6>FjUis1#?E4O=$ zSKrL|07IO^o0;xZr7M;02rHrGzUYhQ2P=V=vp(ttp9dc{((QglAvs?&m|0=F>Sm?8 zYIa_3$qikX!|Or&hGVw<70evpX73^38fX^!i<6zI4fcnNA}@4sQRePJcdB1UJkF35 zw-|4M>Z#@A(kz+@g=uFBI~~Tu-SXHPFjh8c4Ve|kf^@-}6|6kRrA|Z~OC9bLwKI3S z&(_4v;v6^H2JI7Rqy! z)|W&timWN?^8rFTAO`SJ;dJ*0N^R~e6)y@1$2XQ61?w{g}M9k?c)UA*7O$|2rbFSiANI6zr|FJXvq>{VT%{^sSmGJ}Bn|ccx*9`}2vTTFO((nx-n^)p@Ac+0aE|F`aCvHsX@u8?{ z;O0=}z>F^?;W&|xu?BYp%bk+%;Z6Ma#OZ zuV9pfjGGZ(KhHgicB9JMvMh#KTx1XCAjtBNUg;8bEIb01#TaGbFa|KYLP1}+YPgp= zkG0oQ{okWtC<>H1@~c#eI~$-Kv~g}AuY#{q{5+#yKZs6WoKGB`VQY1b@8lx!X&Olw z*T1Y+y;%t-3Q&@-i#Q#l%XxFmse;98ptyb1zZ^ONZZlzLd@&PyyV#!c<3X#eS5uYp zhd%)kM=L*JX=xaxR(p@`Rga)1gswZ+{Uqr7hFwJ$_p;szs9?8$DY-i_`Y(gB%30p@ z?P+WFV)}X3{8mA~nKN0-ae1X&D2nPvd&Y7HKhMmpnO?3Vo^W4?$e0$%#COAf50}Zt zE4yO48@b)3?qnndxf$ULV7o-*<{Uq84p!D z9(hGNpD15)aWN}y2DY}VsP{td+|WrH0mV-%xP~?l;3QZ1-syz?16lY_m|(CMh?uBk zugheFV&orv4ShDdqXSdI=_g>ejp+WBLSWXWdbZxkezp^aEJF(W>(T+ULY&hIbFpY~ zMw^j`{bO#_qau{7Xm#7*%pip|fvs*-Lh3z^$Rb~;Q0mnj9D)s?e8uZi_VWff?K;uPfX2;?o95H+#&AYQ?ajN zN`Rjy0D%P043BJu3V~AGfZQbgLGnNv6Seqt6HX=98taO4=k;VK6Xn>hbLz2hK`A;4 zfbUJ8$?)@juQUcmv^GfX5F+jucCT!t;1Vk571EE{4wVl;ut(qb+dMg7xjMWGDGJQ_ zUIEW%V!vcX3c|J9Sacp!Y;)cg#?SdQEF_No2>(d&U1)p3Vc!?gC(dU zE&|AR!`1|HMTYhyF_DgxStS`W*<4->G`^NS;*>mUwr@*e0<97sqC>;xWmLCdh5!a1 z!C>9^_AYEw2cmr%r|_x+g(5Lj5;BsDkYY};(BwK1jp>exz(7co;k(Glef}2tBh=EA z)z#Gu9WyAZhZ6Q)!B|ToTLd`+Wzi|}UhHM0fF-<=9}Z1nu)w@mj_e}lTs`(kkig#a zL3?ueuLLh}#&Xm6CI)=JSksTQWOLk%9)uv)1LEDKQZx&Oy&qu#^c#R82E~YkLs?lV zsfZ};nlF44j^X;YnA9hm7ZSBBof;;Z)0tpFdh{?Slj8@6_O*)Ce!7y{CT>{2tq?eMPmpX(#+|R;-jObr6%T)HsrtIL&3oWLJNy1BHRUWQE_;j zOO`4sIZMZvGWGTI^9l-}LAq!`^kSm&k?Yp=^2HRivR22~(MPS69C3wCO7+CZtXNE|STm%Vt|}INUs0Xe398HAI!C&iG{T ze5)+TT-dL&{5@rbVUt4rWb>!kF+7)&MdHr?y^1h_I49hxSS7fP)j`E7K@&$XjieVf zm+SO4{#vUCNq;5M5fLGXEX_;YBgf6qr)wdLMn)7PE zW7D1a+sf9$>siLiZeL;YaSZgSsa7`<0pzu~4#l)~1^P13ryc0 zfMXmx2gfORTULTQ#gHQOI^TN5<4>HriCq1txIvDw*(>hYSRJNAV=u~WFtMxE?vHRP zy1v%-xJd6-#>~QES@62#7KshXs8n(ydKT+!w6R^I+jW zGF39?2Yn}0nr|bNm+55kzb;4&|BasR0svkq@4DwL3=NE1z;O!30;S8c9CO&i8ZOVO;NoR^T8 z7gjZ57DS)(bF{}WOw9|Z{z(FwWQVx;v&zQDhG2|`jzMynNNio9A&`sH-;H5BP zC_oe?B`X~=vG9_VxF0J%LPo~X&{%gEcl25&oT%+A7?F+WfOrKG! zW>*AUvG_tV`qH-T@HKLlb?AP?gW%u{C#CORB77AwZa&ALBWJjX;waLZ&8_yAWTHS)FWpiu%X_*{((F5M zGvl??ni;BQtop}U|MSuA`t_zq&XWaOcY2{Kv&tidLwcM=S{Y<3B1j8jNL`p%8}eIR z?94M!5No=`R-%*;am}L?F%seBjTq@XN-XXl9bO7gHe9dSPwFR_?&l+$n{<8YO10YQ z@d{0w(Ov}`m@cM1RW?hniBz87;;E1Dqs4Hat}EO(_-XNRrrbL2jf4lShH!CH39bwZ zLiAH4qE&cl(EZIBc?mP?c;-?PaUvk~Dvn8vP0Vq9`N=09t~S`I<`LDqa98#|g;7bZ zb;>bBFefK3FQ=rf%vv&}sHN@XdVJ3D*c@C>STkCJ?eKsKf~QaN+Rk_4j=DFm@_g9l|{C@wIt48+?X6KaX0nB;IxT;755X8{Wa)%wEh zN?<@B&F1g&QeMsLY882}XjGc;^Lx*FRf0hsD;dDGoxwN_uj$Mw;|HJJ-{0?EyK0Ou zE9uAR5s4@-DLEA}FEdV)aT1o(QRz;T{)6r#pV>g3Gs>gkY$p<*U4)@$;99G#J^^vL zzYKrM?MbivH}&znp&shMFTwcXypFvM=l5L=XRqLK$FrvNQwEVmes!_AF_&3o2W_SV zx9%*CeBggu{6;NJF;+}b^tr!n0Q4VFqA4<_VG`Fj>i7fUq~xT;I~FAym}FtLGob5% zSLD9^Oa0h==Z8WnfQ)4*S$%~@H>xBUFG|efn84ae_(2@*c;98dp@zi~9=@?pNzpW3 z&;stz}gqC3jO3qzBFV+yXOwo+r#4zU;~8H1-O%11VsUn0C!9@7lCGn?j7Od z-F9BHj9`W;G`MJy+@bdxRk^B9K2~?dwS_VX0wj#y#HkKE}l`EMe zlty!f>cVKx%%Ri0&Z(tAN!v{0@>RWe+I0QQjpS)jYgg;;U5@pPvkXeGTeIu3WrJ?u zm38~%=CzYYBDM=rMW}k!x!OFqjseevBdFaqd%kBp6vD3ch?sM3a73VGAQ^Yo(DEWC zN6Fxpt;+6Q1;cycxfbdfl*Y|^%JqTQ5E5~RTlx7KwV45#F`0ppUC{^*JSWD>xC;u$ zIFF#mN$3HOe9H~l)u)Xwu;@U|H!%mg5TVOwn-4qdO$hhiAH3UnRA*mdWKJv>LwcUG z_d-LR(>Zqbu2T!76StEDZ*rTS#3oV}^$BHSQ=H^$@aw+C#q;&ftu{%TsP-FwL8K7u zaPR@QASlF3Heo>)tO&L+@e??Xhm-q&8q*x%=ZI01ux0+^|7b`(0aZVOz%c_QPJe-k zHOeSQ!_EYbHZV4Wr~PWrxbNjOTEllr>+_WbVXt6t!_0RiS&C$j=xzRL6IXl2`82V) ziAwh~%zqx`aFLEVk(e%bqJO*E4>R-`=6`&p-`gxf7@`){Y*EO(%vfzGn(U(#n38fx zIsFm)!FCCD+1mo1k1LzZI<&IFi@}G?r~PSp9aayAbi3+{%9Bthi$)c7cjI&31Q~g@ z*3;@puV#D!hA#WeFNeU(4bRN9{-KW`yHh%ma&ESd=#Rqv5v9R^*|PYtQ} zjHdjaop&Ger#;~T=cPJ~a}9mmLl@e1z#As{HL)JOpCba)K;m(S3pa=B{O%)n1}{z4 zww=}L?dxTEM|c?qZsco!3P??O1Gnd>B^F0&O{#UvPigZj?+V*Vf19b5hk*p83bkFe z$Iz_6W~5Eu({SwJn`;Br&OJN(Vc6Opd^8AzD5StU{$)%aK*>bOKpI33vUzN&cQKwnr!DaH`;{_0;)EedaxwSWvqc?0Afh4oIe?BzHlf4Eh#3o%5Y9&PD}OihI`d zr2!bq%3Q;ctW4%fh(ZZWo5i5jg8!*>=)utkjySqM@B1W#?{i0M$QWglw(xzS=f}YS zt>T951LqG$fq4e=1|q(ph)O_b*2khp8oc>9@r(F?GLJ>2D-J1tDi?ng7VB~dRC`t7 zkP$WKs3!uRqL(Yv!?nOFwC!yPquV8^XYJQn0JJNS@+jSeZkKU2AlM3H5pkRH33{eK zlIl67Xw)a`oV3v{jk|!hzj&w@- z50`*>DjJzBgD_So^tugp@Ug6di}ySDp}cJAV!vXF4?;idEJIq9n55VgIWs#D20(eW zQFEGsOlv8WHLzE9{5zyXwAM6)}|F1AmvpCV`XOgs);L8nfQiY8-}&}2u}DQtvw z)X(pGOy1V+x!@`U8PQh45)+Hj!$acloc%!jCnHy5n7(#YY>&Pfg%>JOI5h z8assgWf;Pz9JmJipwthUoxl+t1qk}F)C8z(AmvKBHsW~Uc%rC_eTz`mADwXForlD5 zAzzgIWXZC=)WZx2ZOYb~+3nx%ZzQVg)6B=()Zx>w|AT6kUWk4}=kK`3WqvWr0vas< zB&9>}?Db?@UV^lv*HKC3X2LtBllt}I@nX{5QUus|R?Y6&dT{m}Ks+`$YW{_r8x}R} z&90ZCnW~3%U4B;o^5*pv6Ontg@?~q2_L~;rv-15DG;XFur=?rtuJ!`n2k3$EUXm>K z@`2LH(N|6}BR6g^62Dh*p+^U18u|Y=E7x6+5?*-K;FX-JN(%t7dY=2i&JSLgFl)L~2hfAf#5!@TUT#&)|f^l7b>Bd0BZD7x^ ztr#INO24_%5~0jxPaDs~;Q=lok@T=!1GwQOlhIx@UWk#8fb*+Yi|?#85c%?mL7#VB zZ;!)FM&YfjcMn?x)+R>3gJ2JUF|Fg)#AGKUHjFckO%44oZ$^ z(Rtm=%TFi05j0lArlxB@G&htXrqOiA$;rUz!SHDb$H(c$y`cBAAxDZ$&p}A-_RoxIj7X7Oa9MJ^?Hji$6;PC}ZFRe?m7n>*Z zFs;F={pE1;0_CNpM~suo5$(NesR*JM)x3Lxl!d6|VY+-E2;jdMKNPe1jokE5J0?>h zg$dFmV%ydqf&+1^u=e|#Z(X{0mH}_yGHhVjWdsNMSi&ycM*R|vb*1t26r2>Fl%N!A z65=h3Jv=5FI`#PBw4d0&Sd>v6`;NAjI0PaoE#KEBw$_whEs}9ju2zaNz=`$7>a3^% z`GS$k2(yGJ1lr{r_wXr*Xo>_56w}%tx&#WyJ-FoHfiTJK@MA6TwA!CgtT$ZRXC&V# z^~Yb#uEJ9UQ<3p+jaTxL5g{=_eq~?pp*w80>aP=YYTs|Yx*kU!$!^k`PVZfK(^+l# zFJS?|ngEA#dcUVZ-)`4CA4}(PQdYK|5I7s|!vk@uuh(CP6&%aONcMK;6zaw=hPcrH z727h~;$Is*ZTBe0CFBhg9gEeHD?phkYyo?ejB4ro@#QM|2xK87#4HzASSoRgT#Nq(>tHmv7&eDCLE?fRvpTk`0nwdl(fsXmR41 z^@i?xBi+jid0%^qB!@RdX4r!Wv?sd?02fpcARI%CwE5lE>YX%|XetvD^83U#o%~&T z&eHXi7;a_Y*j^IJDjcgIAr3La?9y_m@a@!F1=5UX8@s<025P^W)KQVE&Cv9`uBE0E zOFTC5E9<%{nf$i(WWZC-d2Ub)(Cdl{|crI49X0wr#vw zVXer<(GtuW=0?u7bp3);AT&Ynto9>Ru$r>EvS)m@9NAV)d6d{|(Y>{qr6+zX*1 zH35wi;@~?V3fM1Cj=xUbaRlM+5*H4vz+DI0ChLmIoj5_*W<*P@E3bYL zGb^~3K)&JM94W>KYjl8{noZdpUk%^%_3pQul+#zi;>B9;9~$ihjcZ|<$Krk9C3BAF z{lVdVoYSJrPDP9unc5lGeexuf)jLXpXkD$){bz!l_X}X%BL=X~H&R6k+_;bZ$t!Yo z%bT9B3B(%KX58-em%Dkim&|40SL32q`P2hYyq{UJ^ZIb zPGf6LnvfE{noRAH&eqOnhq>Z@4{CWeqn;V}N&h?fEqMs_SK&?etNV)#A|PfkSi6+b zR`<12Ft?5DdS-b=CPq(_4^8(tE6?-Kx=KFlZ0O@5&UDT+&$Q2UA>V0j76iJ=-Kda- zUg|Ld(nILRL)IZ*4Bj+Uf@!0N>0|Sm=HH;pJ+9!`Ey*9$Um8y{bC0jorHv14UOgR z9B*Ly{vq;%801dF<PfV6lQ4zPdg_zkpCnX?v z&rGRp&^#tVDq16)-|RCp)2ri3n&FYZI^@K-^P&%rGUWa?8{?XWFnFLtkvvNCU?-U= zdYa&#v~6&U0~dL~R~TVFsE1Y1WTZkNs<-0>MCq(;Z^LwS&WxitiVNI=&4(7=z4H@b zrf_Ez-o5?=mL{6A#9;-Q`1J=BUlh`B>BU<{4M=!nSnwc%@1qg00TM>$HTdoui3;`D zS`%Fhju^s#p6l#A2ZtGVH?voAjystyp(Ytuy>U^v-&?Y(pKp6A%7#J+@)>NuS~hnbRL8f{DOhl#ofM&W6@3=&1+ zH`#W1FC*nHPCkjLwSK=zrVgeIl$h}yAZN235LK8aB2NrZPcW|E0ZqKj6-^Yy0!;{r zg`f}k{h_^GX;<^QF=+Aho#Ecw9ps)AR~;EC+#{Ld4xNmw;Hfz*^vB}o3=R`W$Z)`a zP@=`r*GKSS*PrDs5^Nrm#y(5IOHI%=ZZKUTNtgu|QZK#n*nk~;QRQm*l);`;loAe# zL|us&9hAw+ZM)IT^kcf-ZbJHfy`iO6>lDYm;av8;SX?QXl{5Gtf_zcIq(x|*(FzIX z(@1zCcGsx@P-Vjv#!~~L(QOYk$8ax5JRfnvAw3c2R{;WV2Xr9qGZ?+014d7i)>5P` zr#92PCh~GW{wZP-%?a6}1-tI^@?b?JkX%L}!whrxrv41GcONK?v-Y(6o+t>rakr6q z3td2)P0i(Pdj4bmz3kJi0=s=&yO)~!V28V=_)kpQ@O;unN3IPt_wD5_V|71eR`k@6{WFK+2`nXi0H(xt>I=_B5$^Hb$}d2h3#Y#paYKOAAp zKFQAsyhMbz3P_ta#AQ9)14fVCrg3~M?Zw?6-Q2>duVHVBLmKRqJomd6Xy_&OoM8Y0 zNfT=dJ$gvrEc(eHJ$=8VYVSX)?Sr9&kqQIVopZu#l8CRF^M3d(I2rUJg4N>9)NVP` ztWd87@&$mOxI-m`8e=i=34bpZoPd`*>{3n-N0BX23A?DRS6Yu6Yb4H7bewI$Y+$h`L+`!$JvY zN=#NQ^#zfDwgG&qzySI5)e!#*BJ@E_>U6M9#^!uc5*qy{vFwKmCU#Ockmthye);5= zaKhfwl&6q@d`KI>AiYZ^CsLp4lxD9Aru|H6U(5bpvOtyXFwUac%=Nj5NwL2GWlPJH z&lQq7)uKoa7Z>b0(MoEgZYyxOfm!DLa$C|qG4&g~&K2Kl^sa87@=_jJzfM(_cO}Bd zFrrG6_D~257jvil-;_XNHAG%q=xLHRHle3XiOKh$K^SHF-;DD9^yvWZD|%zf3VCMo zb0W83LQCuY4UJlp(%!huM19Rzz?mLi(JwJD4Km54TINQN(i!EmVxRyVx&1tKmL3(k za>UlGqrKC#-9`Vh>O3bCw}K6YJ5rLl^wN5Ag$75BnkS{st$^yC zEe`%407gK$zxD{F>-3sa47&unQXW?q#YO3PX*&+;? zV-wdkN~~mgCd)jOIh=VVbCmgG<^+4fa+*DDkvh3feglr49GZ25F20 zch>$39h|~!(1JB^7p+!tT>P#5Tv*U@l~${nk+>Khz2e{?Co)LcWv#4Ca$Hgry-A44 z`b!cV-efsAk_o!UkVG!8M#I7@mUjpLIV@;QkO06TQHx?RJ1$2tf9Ks7r0vmYz>mX6 zznPPJT6*SlTSl}PbpI@Gbr*6lUU6#(+xgjq5Zl>F{~pas)coj z5%q<2XvCzjZZ~2MJ9eR{`4I7fPb3ESvE-?~sMIO;h=U??R)jfmrr04e3&a=2w?sx{ z$&ZQDFJkfRKlYR7;z`L2Qqox%>BRN#puyyfnMQ}fylA{-poJe`?_q~g2V!Z5U03!Z zbzO#nmW+D8%dS$(+ff)X)beQ5^5isC;$Q9RCPlG(#O`SI@UtW4tj^`o)G@P?K5XVp zF7X`$lKGjR&^h7TvmY^bY{eLKP%Dm~>VONJ3tZ?rZ>RT8>r={$3C^LxT*6EszgRYA zkebn>1yqj@L6mcuE;N&zaAGV2zO*a_1I4r7QrqCksr|%eWMUe`Zh@#Ioa#;v6l95ofZ7|P5qppH zOV3-FKi`HK=|hir;SFkNZSrHwzhCef)scM48`rbc?p%r*d-%rf&)?JDGR7CKy1H@F zmCVjj+v6IJJA!RL8U2mgzPQfzyba;Zy8)~~>ultV+Sm<|K3G)W_kYXqR~a9k4tz>384*@D_X_te+d=c$ zculNK>Z$Q5L{i!C%XA=>N*8rlcDO}1n|N8!dCakz5zU76v=MEYc#+=1v8>K1gpp(6 zu%0qv4EwSX(ZaWqUZ-$w97&#+g=Ao++aq z89pOpo%Sh^9KC}r)Skt*A}vU=NoFe_+O(BVZH}}xGMNiH8Y6eeo&c76psRcGRi>29 z*G$Y#s+r8T&uh<+-7`z0=8;=15m!@P@$BFMwaHX%P2>=9zpV-2m415f#eS9CdvPzm zjPyk^nR(^TG*%LJeWX`C(hn)` zw!!~7Z&37M_%)6NV`;rd)@+EJR=5tHTKB)^4zFv@I~z*X6mPY|&tJfQlWMcoVa>Gy zR!-2X>ca5L>Pwbf<{3a=l$3SzupmikTCyI#S(@>k923>Z9IK7%N(-F@s9v28d1E+d zd0MBr4q?nzV$E?7V>SXlD)&fLpuz})**2wnA?#Q8t6-JBjUNdjIu5mWH zCWLU-VT`C}tZu(3Y6{RM`lzG6n@ zUtO90pqKfl0^FVC%jt#+zee@}WBKV%^K%kzD)?_G%#Enly4$b)*$~__z0A=puzr=RTA(qg)X_{#rWdwtgz;`Ji zi31M83pCCJ4?||!@F_hpGgnIIaJ}iW&6ovy;OFod?8(l>^=D#ccKF5I+?Z$hD|W@1 zmFvS*i9~&*n^`$O9ZV%ozt7UUXSSYuVC(6-06hE2+0VEqaa5+@*EA|;Y;{0KFNDZ! zYv@JL5kxSBYMkSotDO&_57Aj9IHOSq_O``{VsGn4lpzrjbCHOMIUII~P}C81IUG^U z2EQ{fMDIFSi$E2ujwY5%dc!K{Q4 z@-=ybm8jC`A}`@Kj9e7H7==;F4pEgnGfGZ&TgX$RzVyOhj50)7H=XM!-~~MYlpc2} zN6FC8rjc_PxQu9`!6A@CtDv1ElC<1O<0+e z=@CfLKx`s`$lyq<|Bkqh{c~v2!d8c!%ta*3;1Lpl@iQCsWE+k~5`E(@ z8Xp|bU3NxbY@_jYdJ8+{%&*Qx+tX94o%mgWOU{18t)`z@(!u|x5jW;R#}mSC%Wjoj z1=k3h;AVlHEXrxXxYN9(wUF=XL4Z-22$N$>hGV7&NmTe-8zMn7h=TSO^8G%jyd^h1 zFwz7hZKKQ8uFT)d{iD(IxOGq`=WhK;XVPZ1*8m-AHP9vCnTNwO)gsqGAHst}bk_hc zi-!wMoVg7XhQ1fz`f+G~0WiFq_H}vb+@V{X80{)B$T+rt^caw-tx(fT5O8@nj5mUE41bM^1!X>&f5C}!W!*h{BZhx{r$ju zao(3wYtzZ5L{n;fI#)YCbz`ctwx_n@6#)H#%D{}kyT12z?uj&fEq>JdUi@h4Ncv=) z516rFTC@>rkHWAn7%@!zZX*VQk?N{ox;54o!{x8wu1b46ZX^n#1Nc>c&TslV{r``z zZvk(ky7N6}M)Qy~l1A^hX2yD0wycLE$+jFPnqcSUB-jw=jj;<93b-5F1-6BD;}&Q( z&?Sa0&$cAp0;Rxhf^iasM{#MOkFDFZ+mEH)1=8O1LBYk{X8GC+cJBF~k(0oF_a@Pt zGe4gdW!8aM(zgd^)*Jh%zs1t}w5kb-!D;TE9L0Z2)#xC{&czQRP4KN3i$Q%(L< z5ho&K(->?n;$%2pyuequet?)zF(TCB%S{b2bvb#93c|F!17(cVgmFBMXo1Jm(RfYx zcs-QWyaZI6DXWPeav@O1!T*r=)Wh$q2YwrU=l%Kuek79GR9bkB zAPrBLAPxNIqd%Ygj~}#-uPR>}{lxw2ZW}1}Gq)_>IH3@v(V^VHjzDk2)Xk5bw6C>T zzCN-2{ta$a_XmH1&`cVY7$c)@DiMGOourR@Zv%GSo_aa{a+Y16_-2*~DE{2l3D%6w z$y9PJ+KzWKyA!wITbNHNpHgpX_;m6PyjOi7`y_rcc`WsO_H4q-tGD4VC2nhcDDfzM zgn2A+DEngewZgmEvss%9`EZDFr3qcMcIG+@S0}E`Tbe~C62V?2?9dueG95<5!nPCJ zS_wzAxX!dB6Nv@}dl&{Mo?=u+Xl{Cxx-|W8yMiqA3&R3CNz?LB_^C*#hVRxL%hJ(k zgmKvI#PAbcG(f!F2oSICDVuK;3A`(A?(MLI5Z=+Zu~2$!t7d#H}&1$u+bTQ9MylmlZKuN|PlP{kRd0pn4`r z(~XJcGC$?1q`|WBP{l#I^GD=LL3R*Tfej5o01LQX5-p~h@D_n7EiH}+7Rf^tKA0Mb zETi7>NSM&?(UAy~mK-uAWrsn^%cxfz7>qh+G!0X-{r{1*0A>$fb}oxe;6AZ<-(tC_ z+G27fwXsYIoI+{*r`Klpf8$9U7`|io2P@nW^Gh!uxV7_2=4J-t#hX4%=GAZA__>A&9(3K?f*shwSXtySrBM@?>BD`D+1Xjc zYxI+C9c>{tY#Is-1&2aIVV<*bcGNu6X}ZCBgY5?UO^(sns4|)#E$kD&Xx(euYroC0 zH}kmZ@uKXq6>TM3Ia-XCqGbq&Wld^KRhpWz#g%v^Q#BQWg;+r;Xe&x9%Ij?Fng^^~ zZQJCnO#>Fs#tH{j-vd$W__n7ijEF(ib0XaZ9ki#$L-p!pQVqITb)^k54J1oknxdIXPrrh&* z4XWTZG}sFYc`!3ZRPp#3C<7Q@7$-zz=w&Li>xr0P>e~$)e<@Z+dxKaWBYh*uJW&wb z>6Ep_TtrO{5a@2Q5ej72l9h_cDz#)9Wg^}k_NL~fi->qJ&ja^lK2)w}@DbsnLGTq^ zX}#KZjeKPWd0 zV0xsL^$@M_?gdf6>i-NVfLqu|WAewCdd8Yjm*6bMn5AsoL~1E>9h}YVlS$X$Q zA2Tc8`p%sj-hF;~N%>wV7!{Jq(DoxEpS!!gvvKi}FK;~czeYaO;SXsR0w*$i4_?0K zl9j~`pS${#|9r_qZ<@JkERTP7&)vhf?Ob+sOYD0$d}-jGe=7%-JlLiy39>j0$O6YG z?{x0OJDHu)ow4ij_009r>tkYGt7?7P1Kj=L$GOMC0)wM5AK3H_W{~7@ArMCjBRfQ` z#?0t$GtMC0Z?C!>1g!LR*=X(DvN#O>d&ZG4I1I2GlL*}V?@|n%W#1ytD^)Oli|w@9~^ z$!F=S-%+5j&;_xAA3`LU+HgmiSWFg`KutJvWJF%Gc!}FHwkGm?M?eQ0;aTrHcYH~uI@UGAiJhod?8=6kM#*Q zm}1yY6ow!wcJP{32jzvAUw#>!fz)Rj););BVdU`2VTWBL2P^(qSgD=et2=!HuZn^| zw6}+-9ggS0L@fLKP}QY42rNL1z?09KHWFzoA;S~e<*l$Z@>4jcizjX-eK>k zcfxD()|j`Cs@i=TEFe zVS)rWoAwW3no)f4TWkB0?X#7M_3mU=w#6O$+*cx%H*?w%w!#z$s64De_ib3uL6v} z{_GsPk3EEzp%v_%7i4#;RT>$r>L7EyVIh|ktyVz(Fq%YC5&R`qmy6j_^uZxy|BY!7 zwnd0tc|k@O>9NI%KwBY84Lj9LPRSKf%+%CUC`r1RTvXDdQP?`kS5oclFZ383BuS<{ z0UV&C0eVD0PR4|;78A-7-G3sJ83Z^<{>8+NHmWup4H`KX0;Wn7;_pDTV5-D$nE%tu|mPPsZ!HJKwDxsCj4b#=qW zPQAJ>Dq8G_quQdh1i zTY8R28wp8gXO5aHQrcRPsNbQpEKB_oqm#|B#HzHpNis=Y0dU?lSu1^kp}_6{n-A;> zFoAziWDGMdbm?6Tnf53Y;bqI@xz*S;y3=IM&17+QIEjijNh+1dga3fM0e(yIIamar zV0-e5_6kZW$%*7-(xfNnlgvaCCuKM&`5ePH&R1Fm-Cj|Noirh^ zvVi9W4C&JUpRE|;vXh#bN82D0hoyCR5MRRGQ?Ov_}Nn<4!UkK-{kMnD-sWZS2zE)0cF z83a;vx|Pf{2ay|@Hb?E1c9qN>{Av<3r*x~e5>TxbKlwy}+Cx?%U#*q)G_)4dT1aaq zt@)fkZRyVrGSBdlK)@7}h<)^jBO{Vjh{>ckJwo1RQ%$r@j})w?u9|3`8ZlYxkndc= z0EDlXO0C-4+S(2KhxhtD=W@Cs2IQqVC6Hy}HLNLKsMjknYyT?{Der+1j!3wof{PU%0Njwdd1Y6Z@`iXlUuo zEh}ZWPBtkQWo}>m;jPO(f~~9LzMe1R!LDG-aAn;PksW8>KYN-z&fSH4D1qNQFFT%& zaUcU^kOrJbLILVl4G@<+nfdPe1>cJD==- zbgM%RM4Ii`oh^Q{vg>PKyQ*AHGw&V$^Uu!QJJH$69{K9JkQ^UfNH6^7vf>Y3Jp4k~ zL-g$$LT9~1M`=t0U2{P+;Uz7_gg%rKNHq=bOFGN~tPaBfa6JMvr$vcgnRa`aEu{0K zqoB8wLXYhCN z_l55V-x5zp{-~b80iNk~ZFAkJ+^J5)=i`D?#m}ETg;erUh*&~V1Y*8GXlGcP&={o2 z1PAxiRc|IQh;z+rHtp)@n-1*wzAtGOqTurPRG`s2Top1&tM+3>!hOV^l$$cGcO?vN?KX^ixsx%TWw<`hZQV?CeAc&3u!j6THIUHt9W6eIgXoXo|qct%yHNsjyTCfkfCrr77ip!R& zy6Ov7P{~MyCEJ^P?bfgU0psbt-)?PL9&=jb@s(Gtxa8~muDH0pgfBbtJ zl**^PHz~2+E5827``x+E0AA`jd)mYinWvyEGkyVHO66%jRTCeeBq$o>NJ$f^Q6Ck7 zKC23X&I#0~NJ(`UERi^~32H*@e@+|us6b0}A>1~P&grV%#&30ys+k*(a7Ft?Z zih@8E=E(=wQP1lH^UP3ECb(xwAYSSsXCc+fvT$l-G>Y};aFmHER&p7uk4iAVd2EI|%e6EQeLnp^?;rV=y%E{S`AucmBv&1}sn;9IOtwMf15t)ROj-x!W zAJ?ue<$<9t%H&GJ`Olg@%iUp`$REnjP*rmJ?dK1Pk z8kx=sAaz+#g~I}igkb>+_D#Y)rhhR_nOOKKflLiJHU(tw@hCAePw0}_683=ElE&_X zA-i3PeHc7sW={fs7(7AD_hm+fBw-Ig5kc2bU@$n0hCQ#cTu_Y=h#9H)^hiaauJ8lLyg>A)V7rZB&A?AQ;iuj<^BQKYxlb8j z2FzD5l1Qw|Hf@HvwQ z6?|T}Rky3+8uIS(9`L^DHF>?^e}hV&vnPpK0*}R%;iAyjxhn9CFAHOMBf^hGUpicI z`0#Gu9^ZZ+>pSD|Oh8KMq{tM+{o$vgxzaG`+%<47Tr~_L(LnD z?6O_8v-5UrhdVKoXKC+_b=NTyF<&+h|!)X@Riz}?%Yd4w5eYzH-Ls9R>7Mp6XwYu0#0(z6vC`M}bdQ)zI^Km)R5 zDs1e9jqmDv7Guw1?3wAFZZ}uFa{bZN8OR{^J{NxboAUeZR)|mv3X?U!UmQp6Jj&58jYIgxH(8FQE*x>H?{d z%u;=r)j_RgsV^a%!LpslqP+==Gb*rJJkoh52n~2wnthQyq&#W z;vO>Le0Glp|H01z@qqbZ`C;ebtXbxXd>d*W$}kbpJ{=S9X~5Glp~i~35|15-y%=L+ z&P39WGyTNiFElr~oV+MlWWpFVeCad$iIHDp-kZYBnHrXLTe=Cm98UQjhXW^o$e$S= zF44BL(`c(zqfNBZR`*4;(xe>&YYf>(?KAe1cHSOrd6wl_p&no{h2d1s?&?|?@2V~kYd&9(io24H9$zZyO(lKl2x{~sBKRZGMM9uY`x7xfENvABl)4`Nv?N9)lJcEMPI%jN68KlNZ6i?Z@A=BDPGHZ!Q1&+(VushXc1_pzkJ8aTUYPj@WsA+{r3hQ?5mlMbJPCmzz<75+%U82FKt_15fmd(7fQ61$S%OLGyumxR~o zk*d(@R+qJUAbBYHVvRBV0~8Kbn?3wDSh_TMZZ~ScCxwl1dteq)(U=5H#r<)m?>M`mTfInRC0~)QD9o?XvH`Zw+2UJzi^CRUdZvMtwge%B6PpzjP;! z4M_k*eDofDHRc7~{a_VWTMKMI%k;Atl7|>@ML!damS{_^%EHeBe2304m?L}b&Rx&q zPa_Rmp56z`{~E;$<8$K+v@@3(KP_j*j7!A7mF2Yq6t>CH=)SulHL6>F*RNNC- z6Tw>=w?**QZPCs!IXt`^ZEWpT@rK@Vo6dBr5Cb%IMexP>OCo4<(vJqc zP3xNv|DRsXbm0yV8jv83$EYgREjgLcXjyiFUvBXg$%?_<*M0T<@7}(_>MRRGrA!5Td#~y#^>4glb#d{p`9kMa zFHApKEIssVd~ws4cl_fCo#V~^kcH#djZPf(q$(b#DwtT#Y#Y6F?8ojZhm;%MdLRg*m=tSk9^CIVxSjcD$_5L>p5dEo-h9qrIT zJjfQOg{o;wAOZUU8bl3%*903K3m-v;c!3V{^pas>ubTB+Qa#hOWym@OK;hL#P$ zHL_6Y0;8n!9(4g`mpGYp-q9TtGSKT~F|k2cSqKntkx!C*(&W>KN(2@-%G57dZbOaE zXp0HFg84jH!UPk%^A4=vYgoe+ipwWnStg&z7$dX9JU(%OWxT!Q0>&@XE&0X961gZ` z(%ERC;J`uwfrWwwOWkuwhw8q>Ku0^)=&(kIH9D-3+00X!MmqmB4PTJX2gl&MY__Al zjwvXlsP|_9N|IR^-bNbLfw)D!LvJoyI);fg;7B@B6CINsro$aG9Va{343GOehC4=K zNbkU^7-)()Ypg?eHe{P(jlB()rkLCt*P3Ff8f({c@p5BsRVh~P!D?e0qO&B(&*_vc z!9c=1X~Bmr*kKv99I*V~MB8YnsSTW|_lT3`L+b*^^mQcDVhq zJ#={qa7HdrTn+6~8q*w98CB}*Xx5>FClujCJ{e9$xL^beVn~Prc&K|GsjD7p?x;0P z-mk?Jt%()_B20oKnP#0XiX5DldYOb_6k}(bQD{_8wm0AdO(-(*BdC206%x7||E7gu`qWfoTHDYRbK>#eL=>|7D|1RP4po3~>Zch|xdH?Q7$nf}D$ z^V`%wB#~%L$rt0E`!3Iy`W7RX=afXkZRyy`t}sk!u$Q~YMj+f}MGegE^Za!jC5Up0 z(%NSmWe%H0y*?UEt<&5A)=ab-)h}j9aHfe4Uo`P>q;hT0^IVL0WFBVKGhrjwfxoNf7ktsx z+`N2ITTr)F2)T#4w&0K5+oA>?iBZIyy>f94-p}nPwB3Z~FVG#AXWvA)WuErzmiW8BS3U-_!_HEv0pEkEWY^ z;h)GTKQ{}0Q2Eu_I`L*QOXQn*g;;AxzZ$}P5NF_hRNKq8%oGu+dZs@!nR(p)c=TX~ zSIN#qhLy?4$qXA3(~at?##p*12vg#>xI^aVU|4OE1YZr?b(@TkB#>Wr9B^YdxDvaX z4PwyOmf2j!?++0wFld`PQ(>lLn^2TV6+2W6>*CI^~5&YkDhR_IsiQsOn8r*o8pAAn_s+=3&0gD~f*WPqx>Wdf~6`qlp-4RVj z97+Vo>|wxXc*$ZTs)v|t;c1^wZsKcV>roxyCP5CVAZe5Z47ENn@dr z3ur8z>FUZ5QkwX|!Cl*1wNTjkF)fhuou{<@^y}tK*P{Bt)o-7^C>~#C6SgI{-OYUI z{)|Sc4I?K)CW%PWcJ^-<&{`%$;YW~eRqAqd8d>3VOGbcNe6S_hEr+_6#@kh=FgqT~xDY+$_k^|Wc7sx>&Gc6s-$=IowQWk$GnWjGkhRJgT zt)x(y(5b79qLsFGlnP3c5%*+&bJQ%^C@ZkPdD_C$1#vTV5VMe(nVC5s;H=|>SBM-Y zvRYB zox7EZ}H;N{3pltZ|H6Zghxwrdd{#YARpp zz#X#SmABway($wFIoP#h4Y(zvJzF4)yzc>-s*I?Z6PV@ zh}ji>GrPsKncE=`I0xK(&=HNsl+BE(u1NB20ZRW^W-X0n@{B$!Vd)maM;1QVC`sg} z>*$KQTD2U+kYOK81F9KF=l@X6kjqs%&f_Wys{l{U5|wr?fJ+pZzD0Im#_4jq<)9LZ z1#<){H8xlnbIbxrsWINxm|sV* z4p`a|^4IV?`o@6tW2@D|6Y38J0~TvRnvj@z37?csNzAA;1MxS%|3Cl-LP`Z!2(&_p zd>-ZG++kYc!1d?wL~b(2ykw8#F=NM{;{sw0AKFP6ulUJd+`gJT!`PbRQ9 zY*!Gb45l9;9J#BD=8M~xD%b4BO0ktdU8fl7TlE!)VM#11T?0J1h0<@p>c=6EUM(v8=L< z?kTFkA9d#w(;8uB(fvCQ4|!PqZ) zT$1F8GOEhtmj80`-*3_Kc1t3Gy>5RIU$b~}M@IlB5>BgMyM(>yz}m1g4l-&5L3<7& zqrCX33$dP`Kpl$pJQ9zEy5EyZ8%(7QmcT%$XGQ#x+D6h6oRa|b(WHpl**A{RJPGav zB349LVGp^1PO$Mx<}OTg;G@o zH)Q}Y$q;+AV*oHo^7}qyvQ%lT52VqtN&k$0-p~4}6Y~Eu_ATIXR9BjHtE#&m{iv#b zR#m^M)m`0P-K}n^ACg)!R>=>^vLs6eWJ?BN5lk@H39^X+6O1*<;749o9uq>yMouOP zd3=eDZES%t`8Kkv?(KSYb=A4& zo^$Sh|I=GRrP*2Qs(|1L*S5BiATWa?!O7rMa3**Z9>_S2D6_r^7*TsV(SS_ATVm`y z0g^6f{W2DGs@heVae@&im~>7#XPif!Z#iww6MIP_H62iU_*#9AM3+LKJJ<9Ez~h$ zGtDmRnS$fkgC56G@1TTVx->f2(&$54(5pr-7Hu&F^!8hF_^4cKdvD{Y-o{bAm<<9Q z)!Wn8gOBUMBGiLLsAtfJzHP8^-e9B88f;tuR{q^o(6NI&y3Ak>pPs{~=h`un4{c}{ z(P`}nfroL^?O}A`cI?=rL)%HbACphCOZXZRzJ`QgQ`R-KmimbH53OrxSv=Z3cjYzH zfezKk`u_Kz^r8{)fKn{2U5C_w)_3EmiH<3bg5lA-NB56Xqnqq~t+JkXFe~yl3;k0> zz2w9MH0&16p}$5axn%KOQ>`}w6p5M_bGUpS`!Y+z1m+5Od3bdPV`FX{-NeYPeG+a9 zl7@%GwH$Wrb9h^>y$65l!Jm2t;qUnE8EcSytR00$(B^h4MuIDE$H(eTN?KZr@Xql9e*%Gj^NZcxNYO*NKJFU0aqL;5_sSc@TDTP9(sJdE zCskRIWx2!pgK9QhVa|{LAwW$-DIZ4>gq#b^j026;jHoQ5;-HiC3=i#FRYj=6Qk*&o*Sd1YgnUw$gCL|mSFV0O`Fk+(eqB; z!PsdV)7RVDA_w_#X#I*(GTx$rDeX8)CIG6Y&~6lR$&QwGFx7s%ooq+j0z;d7l7oY> zp^+hSdT3^dB!o?&fPB$k zH~v3_JH-YUEwL1ZXv86!l1{;;CsIjgJPh1IlUrXNhuDqK)_54hqAm{ zW@oG1$LqEgb1Z*yr^AMcSkWK`?yoQ+s@;l4{3kJqde?-CyRrf4yW|jpjt}&&{ zU}T%8d3$-&gZ?`{HPF8+9&qt(*DbE_cEy7{9ZGMi?ieIVe`oJv>tM}ci|2>isy8$% ztpkf)-6a(p+-U*$a^%HrLMpp$>-_@*qn!^f-n&T)#FELNn2<)m$EFHqb)6%(IDi8h zu#>wUZfi9o`SwNsmbOqb8R{AZw>*-!40EXeoCHDrU#S1e6un&kRk8kS!IpWeH9?aV z0tuu@3g}ZJk~CPX$m$$HSc|X$9B8c1*1-6fKtrho8t~!(iuk9{;Q=CoPmbUVMerpe z297ft*n~G4rn+Gni@0K`MgwU?9-UzjVKUi*t&mpiPqvm^h{jfgOOq9OG`XaZEHP@{ z!XFlkILs(w6k_dKBYm0H5s}&vt#IR2Wphh0fJZ~{ctb0$;~QwTt}i56+#9o4zpz-> zumKFi3E)iu7HtXysud!FkBs0A5xg^ke<()kG?a{iR1iACFshZmHS7qjR)O3BltwOBPaxeXGVAF~R7x!+CDL4Qr41@dj?fS@KWFioO zZL@D1xbf@jRNOL2*fCt7o`Nk?AR=V*vbGt9hNuO!#RjG2kBSJ|?^J2j+R#o^F}-Lb zjSr)PI_nU1!s>x7sH7ELxeB-8(0+8BicSt8DO716mQkNm#5Sae4M-Z>8>mXtQK!>_ z&EPH%i6iXuh{gc>TF(wy1N;N-2R!!&_Q-p}?8JCI=?51UrCJCsel(Qku!hpm z*gPR(7$w25K}4}Dn%FPiBp#ON19{Mu@9rAN-;}>gx+{MVyI0zq|9kf9%$w|=Iaf>9 zSb4m%vqGC)pvY1g!{deKopPYb3yr*Vf=I`Q(@|m#>B(g%x*)azbSET(?n#l|rPdff z!;_QzG=Gez_}^(H4rPWkZ3Mxmr{e&@jxDIMEk4L_S`L6nO}f|1%i2^f1D#+}<4cVUkC z&67Lbj-aAq2TpOl=igOFD9b04l11c12=42x$$OmtfiQwYP(fBDj5`~5=m z;+waWqloRw(YlR#-*}7c-oNARio4YP(OvQVxrfzH=Ds9+ zUj0(^^YJfaznuGK;2Y|9!r#q375D+XgV%BwbMNM|TJt^nJ((lkN4$^t&NVYPctI2E zHlj?r9uo-3LNrDtR0E)&mCz$H!`R)S5D|;Hk(d^V7?=U%B$x)r00mea!T4RORrHVe z$!Gm9`TyXj{22S;U!8BDc+pJqh1|q$i~O^QLk5?+7k1;!uXXD{PG-EpWH6->882Mv zfrJLqJ_P1%#LN+feb?@e9D=du#zUtfj1^oswUcqni8=ik z*1`5zP)cKSIxWXQJ!G-m!;dvA@mRx#jv;M_F*Gq8fQVtEJBB@bd>{}hIiR3GxJ;y= zn7W74cc=HKsdR>sofK4tFCtI=67=K$gB^{=9K~yg>J#X4DR}PP+~%=%xxKvLu+KDSU)x%q-ZN z1u>*Wv0r>3kxpwpsc3o)!8@{&PZI$xqXdaH(FvU66h$!5^WAC(rXAP|u`I|EQZg2c zX<%BL(MUoQp(lJ!JFnTaN#h$!^XV*KcK3x{yXz!0yDv>h_53NsvH`%|&?1Fu@k9VK z1w!fKGtN2IdvXVrv0PA#^%VHq8uK0+-ehoT?E9Ly=-@qj+t*c+iOqhGzq!ThTD5X9 z*W0A?huK^t!M$GPCW<1@h-mrdsK{ zmdRAQjAg29A`6lPcyt@!(QP1vR5tBI+tYEOq0$7@nU^p_WGlm_g*ffW*}z^K*l7bc zy$ArvGRl2Xa9b2abxj46>Xb^VuvvA_PfS2Ntq4n4OrVJeNQ|Iu`r^wkiZ5He`H}>c z;zF9Gvw^6mU?a1wjCC2sGhhQdY#+9fHa*L%iGpp>4@JqS?r{Kghi{uIk|;qamsHk` zeY3O&73p-jRPVLtt#Tfry(iEj&d*PDi}QG%V}0hB!R3`a>G2dyM=hUm)MVedb4%(m z@pDNV&+r-Em@H3~r^|MsJO?!MAXLFWas9+SpPbkKN8**_tNGXI*AuTN-^@Ea-T8_9 z2b=fhkANfO5o+3x@=8sI4>unvxDaCrPjOCrn9sk^^y35@rUE`sI1o{cQ2tTwQT{RQ zvx(0p9iE&klV6`7E^jU0Z`_|h;QnUfSosa=^{~@mTcgA?WE8|e5hoqVogkhm%mLMu zvT{^;CKOd;DiBo-J~^~gc_x5%HhDbBgv&t-X$LfiMm6#%O^-SK6dq6m|RE+Y(qmNO5%&!o%Y zbGaN1`jBypKV)L}H4GxKT2J&=&^T9xs3-gmXN;I8N_HkD#lygEuweqFb0L_FEesl+ z1@b5nm&CiwpTs{&?`G(Uaj+Ycgp8TWESM!{saeMWML@d07hN;{8FeN!6MnSmk;H7X z6A_OhL>xl;nT}$jnEZJDvE*ZU+r&6B?4^vR)VPdN114W1;S#c7so>beuW2qg{PL+Jm{RaOhJH$ z2{lS|!S8XQ3%q4|T=08b@EEwr5?=mtQtY*Vz?vmH9x`1dSy0tLp_NhitZj~Y{nXAZ zPPDk;aSlP`teg%3sM`RI?LJ@^SUj&=sLL+K znp*7d{)B|>y7n@*`ceqt-iDJNt$*c}awfh~N++h*6vncjZoj8FXwc6s{`cO6?~SiC zGVi;sy!AG6dpvOGy43AZ{>UpAs0HeCgiekvlfOV3M_$>wE8);G_0gBQO{PWbUi1YE zf1|1RK-GgsdOQum^fdf!Sh`pG-J!W#8FzbI)}kDP+YMw2yIe4OREaf z$P?1isQ)>hrYny2Sf{owwobFDtaliB*YV+~o=&i7(8EO8HJU?@uybIo>E#Jshg}}} zJ#OB?I~;L5+0acK2S5N*U>3XtXn-M>9z{)hJR{y2FF6fY$Gw!5kJJ)SD4wYw?!VSn zL`>KVh^e-b+62>(qB~!*77^Sh6c(hgpoR%i3WT?S}pT(02e>lBr{1emQ(VkKW=nIcckF*Vv%!YQ%3?o5Vz651iBY%5UmQQmW zp?d5%rA4K5`0f1V%^Smx5ji`_-oGZnAKA6sRf3$Yy66o=#uJdB<>VFG3U;O2ZBA&Zya-JLbG5IEiQZR{XwF&ixxB9C-#iu5?CO$4{ zo}{cPn%c?L_)ZU^PVQ9Kv;Eu}eyzM#=~wS$zr;Su{TKC%q1mQy5#MCL&V5z+s`|~) z57;NU)BI`qjPkU4HgvA(=klNUKgsW^&9fY6!sx`w3NCZ4Rv9&{vaio7(`l`Szq36o9ckh^*$Q8gYoX`u=i8hSm@d?W0t;*jS6?C`eo zK;)DBEPtARnYZ!#xDXO{(X}jzHOgC9i10IFS(}K4WN2*#8bI^&uj5(3i1^IOawhj5RdI^=gEcwvV^c)d6rh4`D7SeOv$k_3*0 z(}w@&uLM~~Qw8KIzC?KOtg-l1AQO{H)aUe+mS|bDldg`4n-d(mPD|0=_kK^=+KM8_ zqR~0ml?%30uwCV?nN9U}m5N6tHIaq@ptPu)L z!Jc~!M&O3A6NJ|?4z94)T265^k--<=n+JJfj}COlo(#x1tgGkq&GC4lxo*dy@9LiD zMsQ>NWfnjSKmX7Z9!wP!?yd&X&~29Vv{u+!xRaYIys5vLc}IUI<3tCX@K*70FN9*1 zc%fiyYl|pKER+xnG@pv3@~K*CH28S%aryBS>(JYi?df4+5DYQ>Y+tfBJ(L+T4l&c> zwDd{+Q09;^UHGE-IdrgoR(wi-D)VgN1^tE0tNN>%^Mx2;qZzxO4stq^<}!Ap8eA=| zmPTyXGn?e=jl+&3;vxC4ayW5FKa`p-1P^itf(KKSiyH^`iT6n~Y(4Om>N*b?*nY&I z6cx2ZJgN~!K1v9@J1WGKXfy_!-$?{Jox8HnG-W-hu?)*GNh9Mkj0_YBJ>9}`K9=R6 zWu*9%yzb+9J&{bd$cj&v6(f~U=~(B2bn=b;z)#Hn+{?M4F47W12-;)nu{ zD&QIACFNI8KYk`zgo+?^MiX=(!k1p3C8eJQB9S8eP!~8&zPL37%+z#>OhM!96t^#3 zWS@o#frX|VuMrtAop}po1%lQDJT-Ha!C~kT15Bg5K%$`;rg7XjXPh?}W3qY4V!MR! z0E&8P;R1BicGa~2+@!({aJPIxg=QRD8c8oz3oD1ry9RNQRlj6;hD#i62tCI(6bHL} zOYX1Jwk=;XBD;cJVbR2c32Qhp2XHotCsT+f9=TFzqMjFNln7#pUn+d4c+*TsL+7hj8XtbhuLj)r6Tg+GGt z9$XQ0Q@TzC#e~nl@HTk2P4h-cU3cC2-tWl%g)rI?CEOj(Fm*2oR&qz`)5^5BT;i2I0iFm16hQ(p2H`<>X%nVe_ z&P~cDeWY^_v){2_+%N49><|6}Gb_$YkIQFMQMXMH1xd)q#F!Mz8@v%LcJgB9D7U3; zq_cr$O~U)$+W|Vz54pDpiiK1~=4qmUenYeniPQ>(&RRnO7K;|2Kh}WftTp;gf0u%7 zIT#3}E0rqma5~E}O3R|8D%DE4s(X$EiV~2j&@c`-Bm0z*D2NvIyA%5pWa3ByBow_+ zsFj=FHjH$61U~V7RZz9r7+qnQWL5W7tGY9gPPdeuzH-?K-@eQ_gXOfYI68_cnWvl; zrW!^{HP3OYMujj4$KX3D7SIcUMuH@vp1;tnp}ll7Xl{;1BfJwDy-(g90D*!&2izw$ z1t{nePO)k#$CY0zZz(j|fckyqEZIhs2?pG8qFP8peR7g0gYsGOIif~%l0zrsFXHKw z6DZT-LT)0r>(b>$!rF;kqhm)593nP>CvwPW!){rf0v4rw$4wPgfb6O5E6Nwe3lr$6 zU%-zZWr&%8TSWX(eDETyF|4@4z2cx-T(NI{9u@QKJOc|BZnZMQU_zt@9M%C_C67?A z@0{UkK@?em^*0b>zaP2STv+OMnIW-TMqA+rRGQwPyW57wni(0c+E5LpkUaxSBO{=z zy>(is>6(Cyi(i}&5GBB`VSy9QxZn;K-hv`BDGehzX23;a0|?IxFBYg7 zrUVy%t%Mf%%|Z0-aPcey`u@kizl;KbYjz+-=H%s6g)WdH^nE(4tT+-h7h++mP{e@X zXkiHue2r3Tgn+DMH+A!g@h;(jp;?u_Cbe)oGP6S9m=RAn0zCukno^*xHQ744@4}7i zYKtSyiq|~w*)`40i$70>Qd`b_Z~eyWpqdK@<&xO6efw>yKLVAU+_d}g#ksw$R5Iyv z2ZIyy^EXLynoK5bzQ}!7-rL!Za8ZlB)McpWO62G=JqNAmT$Up4PlI#>dNw#Nj%M$i zmT(o(#-1i|l|K$PLMt>TXDi)f822$?`sU zKt7kl4oEHwPsyqr&9iw}D$veh6LnW4jaf6`-KL9)T12P>gQ|jTmCz9${EB}I4RBBK zf8Z&8A4=x6m7}%zk2 z3B(1mP=^@~EnLW1x@d`gnq6i$AeMH7wg3N{24ELbD^@GWaS{0LN)3)}7!yYPREQ3` zy}~W@^}?^{^8!hHar$ZL1NhxwJoUgEOtQv^k9 z!*b#zY%BY)0V*^(17K&16+xJ0?h!b}$G2`NZm^CjB zHp)vloog<1l7t-z0_LHHA|<5DH`qS)&K$FjAc-$6PEp%z+lh6=X7Dxq{pXs-ed z%K_+ajhB)g>srPi=)ZU4$NG;*Xz#XfwI8(~xBnWxs;=$1_Kt$D zgX<96GT)~>#7gpc;s(ld@@^Dd0b@`07CI_z6xyT0Jp+`-l*C@Gx25-J@9|z+?~lgr zdH}mxmlm)^hRX%SS5drFoWMyc>I!f<1^?32BccJnt`oizXj0KG6l{U7>5Qv?V=HaX zbV!mV^!pn61w0hg z-Z;Ucv<7=u*S>cD2al-Urlve=>n!)*9%{bp$LlM1-P2qB+Wk9^6rtTKD(Q~ZABeR) z^!+vEou7V0uY9_<^61#%>#2eD4|MPO`hiX9sJ{>sQbC{5_Wph|+dK5>d#>Md)9JNC zQ#}uS?eLghE@nbKQp6kGe%;E}fvum|vGJyxPwF>)w6|;H2dga;`+GjQqZ>-)YU&Q^ z2HOrIKr|DxSSmAsaMN;755+P~tmMd;O{asB={QXUVdqeU%|pPfzK94WYYL&xqtLAS zk>HNGr`?nrZR6<9V?N+hpalg!bTWS9mO7R6r3I8Pd10d7k#!G2*BJg^ra~Kd2rfu8 zIWi83K<{I|RFcY4*Cet#4nw^I`I)+fAr&9QlB8 z-B8D>yAIfP7=>+J371>AF5j~DL!;Zin@V-wyfW-|i(R?ab-PFJ{O*-2jVA;sVxA!A zegI%nlRM*=(zN zh#)>9h;igWJggTqbZauK9kC1jZ#+r@E5E}i8C_r1a}D3sRg^f!qZC&xqrV!RDo$0% z^+mJoW5tiPeXIDbwxg?_Y*s^7N#w*Aj-@3u1|tANG|MwCxC>8GOF zfhL;~<f)}*3mUw0hKvwjp^#rn+g92G+|pZDA{7~|6}Y+pxmg= zbn8}WEv+S~q>@T1l~h&QrP8jJx?56rs~5Ms?RL}NE$@2_HpUoi7L$N6#1IpbflM|? z&K!nJ2m~;;F+-N2A7SR%&c+Gvokz%fGs#SnnI<#yPA2CKmU#D;)QfG%L~>Wvt;MSQ z|KGpft)7fTBbbKwlX@~EtF0DM^_2Pr=ofen4gPQtAFR8?&_U^pgiDWy-2;Ocz{ZyY z-|P&bhL%{FIK8{jpJI}g@gZoYD`cDJ=5D1reK8UE(ZWxi1{7ysEtaU(`fIo*9_mZf zd8`)e<(2VdF{K9>>X5^p&*!luNhW)hC7qI(GZMa_or4h!7SZ?&I)V=<$zOhc!it>I zYjJ)cbs$?pb2rY1E1l6E*Deg*nFLFj18ZTir_Ll;FtPy$!HGkGM4{R4+3t0ay5#X+ z81>!+A8Q-Mk?M;t?t1f{HIED>{lRoOAbDfCU3L%gc}=Twum;1GIJXD+H# z4CNKY$p`S6<>xOSEw2v;Q^G2lwoDhs&Z6GrE{M_^L}>`igP$UtUI5vX9jw0MiZKjk zMh(`K1|Yzi^O|Ig#&{jC4dLO?JYqu&hz)tX-FE4J?;zHrAlBo70);Dg;L3CmxPn-m zGIgc{(5!|B?^G8qMSc0P^LuOMc|Al6p6W#u?rwv&n2%gG=@zfM=>9!tPqYmEg1=k?x#F2 zcyNyg{)fdJE}9RT&X{o1;}&E$LmrVe{6*XpB-UmZuqvC+Xw`?fb7BpfO;De%$*IhAT5@W3w4h)4Ln8s8yNAceKN#6i;(#auJ6YU>e-DNu-*9j}vF~j_ zXd7zJ5;tLQLDb3J6&Cux%ziob4f%rnmi!x8bKHEp>(l0wE*0bUhB2VB1avVYb1qgF z4cIwb-Dt?vyp^dWuq6G-`;tUbF_KS1b@GO)Vxj%?eKbKM?Qe0XGfT}QQvLtYM7^4S ziMkEJfAih6yH*h`v~Zrm#F))yRI;pSJ?5@8xYihSt)Tj2&fm7HMjA|{)9H-$O_l~f zaSH5MJ4up8lhZ{(OId6jIN6?!m7D$04(fD$@$}f?wfmkIW652;g4v|gRpaTA+o7#Q zR!^B{hIj#Ug5E_7QqMS)k-oIDbvkILR;|-9I-h2>PRqEuqkZuuZR|_O{Qk%FV}2Re zHIuGjaxPBgYCpeh?Tq|=`7s74Go84z+592q1?FEFf@h`}ybd>8na3Cv)17UF>CU#o zbZ1*po|4?2{Nh;Pae)q-1{@sSFln8bRv8U!0-`bu*o|gVQHB9OX8czpj>ZDx#+O{( zQNU=x#$2aiyw+zcUpspWnmh%K1ZK}Vwg2@%;Ds41?($qeI|}i_N6m=>u-~Y*fH%}- z%z*VNn6;dMCyAT&ZlmcBfnWW+gD~hgHy3B^coowSE9TatL=I{m?5q;B)O}i$tk;vt zdQDwMJM;%R{^3O+foH)_k!SWgh7;#8K)ejY?+Y)gfs70s8Y3Dg1i-Ux8+ac`&v&0u zv;XxoYW6>$Qg2&)24Ele%&!)I2WwvhBa6@I{)A_A*dH$HmONwq6P~eRzq@GdJY&Un zV;fW(RVy$pW`TObkAm_j-{9sAoM*%F{TnvyKThlplIB<{6${YnFJ~a*?Jir zF8x#P19E3?z0$e=x|?sfA5y>}1Pl3GHr(CYyL(r6KYv|&UHSU`_1Cq|Ys=Dg|Ns2& z5pSpS`Sj<}<`20{E+e9&b}0)#-^yh&IeZ#zTOM=*zklK0*7NCnHY>sh(b8iPlFmQLq!zI#(!3lDyc z9{Zp9bUpb?f2#SFklpiFt)Pf~dUrLy?Km`KwBzB6~= zO5GOSLEVQsl}?6A1nIgt=>PwGHjZuC++=E#zxN=Q_ng6?@@rL;GA)j(la%YO*0C@r zV0USb#q|t3gZ%DYvH7q2vyF6+@zKc)-|sN!jX6b~#OWU#J43UDV9unECRQaLLo?r0 zy5nn?d@{%~4u1Gc;wj>Hm>uH%NPWe+5O_-hZw0_Q9<255@!~&V!4F(ut#gkPf7k|& z+rUFcaLfo!>A+DPIE91TaiHENfV5B-rUXI|qV7&YjUx>X>;myVR=Zq-*lb=_W~+v% zYhL#OS+w$;85e>nypXTruAmu~(c*JeSWe;K-?n}A)@sjzr}u7u>Tq@0u`jJ1J~$cm zj~-kxad1pXOztCoH+A~8{X75q@%2-uzkBeW?|o|M=F+||Y#V$0_GN>&eqrs#&+RS4 zdfx&oyPxl zVgbJzjBeY$NsN!zOP<7vUSaLHf$FK&a(r=SXKL`+17F^yf>Cw0eUK=?`e`xehrei_ zg7^~KTZk{gGbCohdd?g5T2iY*y}*~9HE9iiga~=bqzABGFRNA1c-CfN&1O;8Dfz#( zF3;M^*2`JQ0HvR!Km`gw3j+9WUV7|>)uiP6#gWB9#`RC zP(2ID3<&r&8%cwKRJ}%^fi6bk{TB%w`Y5%WLh;LrnP{LJ*9U-zq?gCGf7K?S|te)ukTs`oP`1MhfSxx?;5cT7R-?uKP8=J;?chR!4)j=rhXhgQlf;1jEqC!8OkG7qo6s$6#| z*SEv#$J7(ZB~Z%O&;yo(Pz&6pT=)D8mG6evKdoG6mFuhE^=Fl`S1EUAB824$3~7-l zhN*X|Ph%^vUD#*ql^wCu(_nhj&haDT`1p8C5HhiVhdE(60~LdsWyEGIR@sw@ZxSo{ zzWz#ujivjUO`41t$fL$OTQEzGuUsQF8rY7ND@mIKf1=j9l$CQ-PKHrUZMHQ#J6oGY zJ0Q>g{7q|X_7V~Rc;a0&-Qb%_^HdHAL=%N*OI3{GhCykjm7cRpBsy?S2}Q_Nl_D#2 zl~4y$s?JjZq@qe1jq0xC>U!8jyNxvOWi6f_U%Kc~Klhv~HI{9)68#~ny~`r>Cfb2` zf5>+K{l-Ag+PkK+8%Lt{^775?SKOgsKumZGRlgp53D=p77G8atiT8^(A8jx)f=db} z#+sRDm$m+UbW+qvk|Df&0N>O4^S<$@MUsq>`ZNB2b_K&h zS8Cp?Q*Ycc@|k^L-;Nz4wc3i2XjJYmu;P)CGe%%k ztHS|NUMYjL3`XP;dClD`MsE|>Os!kLX3a<;y`E=}Xr?CnqM@3?r4^BW@@8rCX6%j~ zyLan4T$;NKxumeE!ybiCx$7APMW@-cwl3vl$gNp)PH99(EW5mfVH$;BDFRU*Eki}4 z27(-7lWRc@cheh?bDiYI$8ZuyoOBh7OBk6imdv>7`@?%jgrwi*_DX(>FA#Qn3Q3VP zo4|?kC>1yOE6^c{mjkANW2E{EJzp!5ZKELO{FZCk8*M&ub8hWWLfdn(efApOvK}4n zR6iOn*W5x<<&+aNN0ZJ_nicNdSX2?M-bzC>0ZGz}BmLkXj#zZs)^kJCNyuYsYI*>l zxsKzTzkO~)Wob3l$wx{URT-{ zyF8|80u>iI1SPFXD4bhlJG5mT247S72)R{{=y;D?G&y`ezcX86)d!7|jfo0^6lXiE zAuV<AGUoSfJN1hkP5jMIw2P>O_u1)A}wlXV4|1miS`| z{hhf5uP1Pwv@Oclyu@}itX2_N$U@?|!j=c7QjMh3?BuLaWd=Q&fGg-S>eyVo{ac+U z6N`6+>eQ*e!(ZQB-#ZqDBI)BqkFT2ZMKEY<=T_)V< zX5v(N-+KJHb-S{r)^o9ma&TUBmOb#@yL-jbfLBQB-6<&+L1NdqP=tPl2I&h&%+VsS=1ls*KgL)4+bBaH2SF~AC9 zAV6X1nq<8&uvMedI=7F?$riRb?$eRt2tY0xUuQz_E%!j_Ye z`H4m5%R!gWWq$5PRY{EhiTdwjG%DonAB6~5bEDqGp?8X@7~E34}089 z#H`z_yG2K|b>N?MU{VKSx{3~GbwIBJf2RW%bb!&3Ix)gHA`!-HCdr5-g;=jI;uE!b zEv|(JX|>j&R%-!BtLti9R0Fj-5(-P62+QgiiZrW%Pvj&kiPA?fR)W^Dot;&_5CCN) zrEWRLKy#UsPgzm>KDgC-$~>!v;DM(hLKe<9o3|>T!=1|%x}HhrkpB;IfFtJ7k`IN$ z0cBN3gdi$Fkd9C!!GbX>IN%6{qptQIlINTjbE*AwL9e4ZP7ktQ5rH;1QYU;@UrOcN zFs>m;+D65=6DM2&tAn*@MQ{KdKo-aeH;)kSKo4~Qo5r@j^3WvkOw+FsS*(NwiELdQ zFTt;7W?)*>z#xqEB-7IL%9Yi@VF_>va-b?1IWvsK(2$HQ`a?@y&t=hQ?)PS)Fmyyk z>0ApPg=TI^I2Ooqs!n9Xsg=E%5C}Bhq^g4Pk4l-g+v%K-D^bx|uKP9mK(z?IvgOlT zdjp1SW5jOFlzI|gJ{BX{p0O>1hbLmbwyLv>-D3`+JYs#RUfpB`+C56%2R<#^N526<&9F>FdVrS(j7&RiZeOc+_0F}Ow zBIXUTgHxf7J`g%CvwBfqI9(7%iXI_;FKR7LKg|w|j*H9h*^m{=<5MexmAfm9;B}b= zomU=e9-rL#>Z7ZtPrtTra#xVyY@}L6Q5KbeKVgq05>7VGS!+k1-M8h@U4tP@Bu9rM z3Ae*q86K&K<0mg3y!DMU(*X-<)Z!`&??qDTfl|5=V#|l+vF&yCbP`mOpqzL(fmg!d zK?4}ofe``><3Nq*;Dae34_ntE5x;eL) zp_mUF5RR6H{Xn6Dsskc;8Mi<2?qeg?*l4l;&SQ7g+M5$Sexp?=hCqcBF(}$9(ah&U__1UUZxF8DLTJ^5B~;sba^2o%j#L3b z0EmhLl&L+i-g)dmy%>^2i^WD!B3d!=tzlSbP+B@ z>ZII4WtBz4I!NdO0?4gdYq#zY3|WMTtlWvZT@Vt`yGASz=crCWu|o<5v`cA1WJyt- z9-0jP_-`t8p9*<4y1-!hJV7U;)7hEPK9AVj(x+j4wVqs@c<0xRWkF5*IGgD4wVx2n zQD^%+7iW#8_*COV(Jz-h_)X}n0Besl$`Gu565CJ@o6VHfn#6bjKaw2hB~IrOB{OEm zw0g;9by+#B6z7sCnd9R*u9M7}>r{2I!k6Z2d^xLB7uI#Ls->k>y(ZriAcn#!M{K0n z{z{}Ard6Vdn?sG#qZ)62u^s5C@mdX6uMj*wmmW^i?fZ0Gf1&+&yic;Wufn*{BZ|)C z5H!n?p|nTnO8Xa=NP9&FJtC889GJ+mN)g9EW+mHVu+? zMbuw$*(4DOJ5-gmTu0jFD@qbe5%w!eu%!rl7u&*8QHPbLI^Fio1WhYW_zfbj@(6Tw z?UC_apWB?2YSZgCM#O49W`$A93#=^I*S&H0!FQfmHSyUWpDZ5C*%_-rXLFh~xP*VR zuwx=M^Wb03Oy9q2nd~%Db{$X+_v4Uy#z0@@|D{Veoj$vL*Y}^?Ei4Q`fk_t5&&k|M?hN-7r>S)he#oggPAX*e z8cv&sSU4}b9AVBWA#bdcJ3u}eBFwFG2oLYgi@I>g)*zs`+8)Nj#VT05Z@>J1Z2RIY zq(`suJ(oD2g#f-aU-qa}27|pkxJ+=Bvx33lvr~-CqN7+n&5*c0P%D6+5@)&0pxAyo zFgVc9rbp9^(G%w^(CCmhk3}$hwO~lja+wCKY@Kx5 z43>b%QNb>xpu^SyRaTjJW(lOAFk;_7rB-~jEOObJP{mTYQ#$CjsqUG@kexxE8cH&& zv|4Cfl!1(7Z^BOV4#7`U}#*i1{xzA^QE!4HIBzaHjBVf z9>9te>GOIsjN7fsaCpboLQp6j+^Ae__U-Jf^{SE=X|}Q*{hPhgY|aBD2bGTXQWH(m z1FvM#di*1ljsW2IMl^s8(7BhuSh3HiReSq;+I^XVTcv8h6llMsvWDyF_Nh`Yt0p{s zW#XMy0)JcZW``rKe+Um{y`mT>EsNr7uf9fjTi?vr1tUa2s>I@C-@39_p`RVn?@>s< zF!ts8HoYbNBnIxnPGk6b3`8h^Q8r2hm;+$i#{d`rzzTSf1_S`MXqXM8t#079*nrN) zu$-GZ*`dAFO_EwpAJ}g@Zo@a)z?cn`ZNL`dFug*!x91cRWudQMdmA1iryt0ho0poc zD@v*YUc7Ru8}c-pObdm_;2PNwt`!?-=?Xx=zi0~9GTur8NUqbYnW z0?HB4!;kTJi5+F}b@sh>e1mPj4PRs0ZNgV;cWLnr#C`%NkqxIX(JJ!FLNebLHKLev z!n5ZwpJXw_CAAU=DwAT)UFVQCoA!lNixS7HN*(jvjc?4VW#cC=+;ZsR$?@eUFWj6x zd}z-~`3-`S8v7?F_YX@Hp>{+XyT=B%4JX`s(As_sDL#(e<<#VFU$GD{o_Gt)Iq#MScKa4(Xl-PoW;=oK8+p15vxsj;lzWCeS;bsjbe^S}o#lxP4W{L;eP^e(bmPiO~ueD}ZGQus?o0 zj_(TJ9>zz)pb!Sbeo*p*wHz4rfueJb6EE7p8frInlp+cgD4W)s_L+{ER23swuK^F? z(3Nu_=9ki+^n%;GV7nJgdBK1eq`g4nb$UZy;tT=ZzB>urOL&Rk*U~Shaci1SKb9ua z=~@sy>-Y`{ULe6&NpO%nL7pKAvLr#n|Ni-?8Y6HW#8mwA?Te3YIx&-SswW=2aPzGfA6T|_%p<3>Tyg7$ zHHoW#*9F`s6u{Bp;d#Kdui|&zL$BI(aQg&x==FytS3UCD{yX0sW(1bj4@{+K75>AI z#~+LWRGgy8hq2Gr9S>K)!(|YMDoRYo9m!-IPHyRTvp0T!}n#SKPC`Dq4`EW)J(t;^G$zBunuE9 zPCc(v!YN`N@X8cA_-92j6caYZg4rM?3~VaP8-`=T#L?-{K#%OOxhaE65G>hBZ%$H+ z!+G9cp3Y~ttw;;Qdm52yIz+h`LkNF9zA+b%(n87|u2(7nw!U&pZ({pRC9BP9uuxhs zG1Tk}mzI_?nRxcb&fOUzz3H&q#9=3v$MsPm~dU`xrOp_kS0&AAf zrn5vgYwPv!B4cA2(8HBI@V#G-Kx2r^pyE`cXrgQTJNtz&w(BT$VvErAF-|A6MXf{~ zSNZNr-LJ8^0-JX3i2US-B#I~gsaWH6xP|ZCI24>1t7=-g_)s z9*vk^JrBOoaS!OkaHhT1R2m#EOC~nKv&B-$2cF@JVW;9Vk+A+M#Up;8K2l7xIw&L>olazZ4pv99zCgg|V?7k5BN>m*L#7#zgMoi&!+H$90OQaAlH%-Lk8(aU zT!ZvLnLDU|l+XeV4pfrC%1IbkC})(QLLpH|8L(=%Bc&7SQU}cmqWDE$N~O$(_J1eM zI#oObtU);>(Cz;twZBM9B65oaVD~t}uGTr6@<#lO!OaK)*Sosdau6fA9#(~-EYF9( z)Ij$Vt71Q_-+!kG#A3YN&WT2f!id2Jqv}kmbkqZqQh&89ov$M*E>R_E(dfl>k*<^Nm{ySY1*c3pgZYem9$CQ&@_ojN+~#KL57GRBFn)NQ4x?O$dIkbR8UY6 zQ9%*e3NnQ9Kj++=G({Zm`}_Rf_y2w6kmSr~KhGKWG;#6saq{8`qhJ1j%k%ef@$hzG z;e5W2q*k`NXMbU7v@-)fQGwsmMO@kCN<>6>dU$hK@G`q|Oy!UhcmiLR8UghSpHn%Z zRZv%sl*@Gm+HvBzI?-z&u{Z%NcoI0SK|Bu6l?>v6Z9dP}H;B)Rj7mu0aibzaBf(-P z$j=FP<%aq^tO>Y8Pe-Blu((ff3Gh5J0@XOtp~haY&^HDQusbYsWZIvPrBF_>i4zeK z=Y>5cMqlfiD$@Mn-za%OoG-ukwY#E>I?^=odpyg1u@@j&PDQ?(FE~gax_a&MtU0 zj=SI(9?5a>;c#4luzcYO1;+`G;&8lOtP|uR@E-;UbaT$ms=NTFhb8cW7amTZO;Fdo z_*~{E_lM!nRB1ATU8AG#H8I}m*-|=G65txiW1hUH4$mkR_FQ4UoOj|g{FEV%5k+atmy5X(PJ zQ6C+got-WS3K3=uO!bLttV*AOJ9&mBMT94YcskOr^eH zh*_B);T}Eo1)X_ z*AI8(U{1Ibpm{A0NWM4X^j>&z1W&pzKIC~soCFVoBz;%U=ns-&@S-TU!04c!bzyM< z&QAVdGW223y+0)++=Cew#`YqD@D0Lb7iS*8?#)=u7!0r{V8e2}9oY^J{4RI*z{GfG z=YYV#Kp?OD4WaQ44j9Pfc#n3*)1BqcbXr&xotDPVVtNirNbvB?%EGgFn5PE@5=SV(qVec0crC`k^Vj+UjxGZO zIZQwO^O76}3ug(8vD7tj`avq!j-41QJC40;XLJp@_fjr@3tayCM+yVNg<-zVu}&e$ z3W4(5&(=6Jec(8W0{ zCf?=l>d110>hy4TcEOVHK{x|`cLTiITe}v6oR2`aVyW9M;QjDki6{ClMs%Un7X+*n z+>sC5`n19DRL^Ssi3C;;&S1~&i5}l31A_MB$hV0#y027OFOy-}VJAK~lg<>M6)KQPiU zTAZ2`&cM-g(r`d;3XoVRCc)Bk{4va}OCU%IV@GuPhl$uAI>un$xHk+SSSTGp;AZzQ zd<-fUQ??E$1}mG{8Pl2GQ4y|hV@%{_AwXs^SQ<72tH_D+z!MV- zVtrD8!qeFW1^ki}oXyV0`RQ1wnBx=6$-_eNP>7g=f(CRj^fwo1TZ(?z77zg+Il`-P zz`=UAn&_Fby=zf>6iS$ILZufX68a&)$)IFGaQHxlM54@&;7ii{;Pb=i+!|5x(A;Q` z$m|!w;{2S0W8ysq$kIq3mrx$pGa@BArN}8bC6UGVicZRij2I*e;R!QBi2;HL*AU5o zjEML`2`^Nf3-)egO1*DPB;PAm7~qhe7?n$OIt9ff^8*J6cv%v+uo!W;y-o4Jtdx}# z6yo2-CJ0GVR1l^f9ZP3A?)R$AD4s)9j3jv4@e+YgF}x@gy*+A&Vv{@lKC~porSy6i;AM zL2_VHU^e!DaFdb6xWIIDAA(``6`1pS9OHuBW=aa2t2=>39Y?LjsMT>D=EMPwu+1C8 z8G}(<$*jF|lqJp5FWk0`Y1_7KyL;NUZQHgrZQGc}v~6qJoOa)yne)8oyzjbq-S1oL zuBzG=)^6KW3SHCEi}%bfcBIcej{<(m@M&s3<_bDwX1O{;uL+8&JT z-?&fSY3n&>ZCAn`_xoaIaw-9(g2Bp_H7#Hc+Z%Y?u7%~A>Ee5DjhJ|NZX_If0XRaD z`>D=GM`Es=?Tuj*P>3I2UG~CjAIr-2>6ykCve!6)rqDLnTyLIKh`_4OR#b5=#++TF zqW0~CT62os-d}|kF;J8j2e1!LFHaCLN1Y)LRSYr0Sd=}`rwmZ&bMxm+E9sMl8y4$) z^xk@N4z_oWFZPcbXWUs!(;YV!=I#qlMOqZPM!j2(_H1#Pf)l_RVoHIck|RdH;k*$Js7+R3nJbP`^r#*&%6 zMNLeWdcjwo0`F!c-65Z*(2Y=KaJ^cVzcPXr!N1FuFxL1|)6lG`H`lH2?I_R4xA{pz z-O$a!S}G3Tm%h*EKF@85yMKsd&3sb6`ak7)Yrd}JJ}deDlzS`Z`>XMXIk_zQ=IW{B zZ07r1BRTV1M%K|-`|KnmA>%wznE}coWidIQRnw;G*nw8#Tz&rywi31`x&n2fWJ%KU z!1-NhBV-e++3GQqNK))8?$hJQ+C9$wk!ZTueHqv{9V>D(w>pMm`%q4yE>Wgxislnd zM~&N=6vC>^hxcQO!k$O?qKc1?lEvM{ld2Xcoc0OpoX?7&wkJ$?k@uE&Yxm&yy2rlr z9~OGptzg{(FthOgf&ST-Odlhq&kZkd>jb1{mkGk#m>${N(}J9mVTR4Ooyld+om6!^ zP2@fJf7=Sbi79(W7~{%+RU^NIfq*p@opzTDQO-#qNG>%J zKlp@3j;Z*cEfk+Dn=9TXNz&2s%q5VyRNi*$>O#kWR{+`A0A0F+9KL)G^vx!uVA8L; z)5}P=q8lHVdw(-(5h411kv^EZQ)H9WSm8G*1zy~P&_XZ5vDgrIGOp+BGrP7=Gn(%1 z$VBuEq6UQ2sQXFk&?SJmBx!(ifvKRUgHdIq@JZ76@LMW*I*}d_0+A?l{=$06dDWOv zEqW%(vwm{0$2?%26$)}}aS{CGfb$l$aPmqad8dFnR5=C!UC6yQ;C2uIO8|Nnb)s>$ zAnrtFOeoQIIw}3Y`^^S5Pr3sI%0cJ*7hU)ZSB8<3 z0@1GXUxYj|;;130(UY+Gp(|AgB<>F40}S&xNDxw7rdPurgNsQ4I)I~C@-tkfrJ{+& z{5&dn_x(u8acHng#p)-7_gKn8!7PE<^NSXav-2qGA4uf8Fz5N7Fs-r94uG4r08lmQ zXJLx+K-yTDL-@DU*8Pbs0GuhAV|Jy2%Ys<*MVa|&H4%GcK2msi)|vL`PW)09VTwwG zS|O>?dZ!6_VOdXx^%ukoOt6>A0ni(hbdFKZbVd%+fcO>PbsrGmJnlV5KhWr&x^V6+ zDDX4{!H+AzZ~Q#0fFz`DlOS}UK&0UH%zMelzDbLtAyCfCvi!8ouR|w#UkKA7H%Cl? zbE5PK8WPG`1N zDRN8dd)Sx-J(#2#{~E-d2vkjP$dNu=;|MNiTozXR61SuY4s)sIz8vR1hbo<~`U98| zU^cmnxjKZdaM+^Q0%j(&?!WZ?rkDO|0E^NOn`A&5NUdyk{ z1XCx%55T@;qOk?RKjArwt>hNIerOrpmsE33QVuw0lJ}L=PkQ+eDh& z6>flnRj@$Na-}c^g6BcX+o%7w-8Ose{)>w_Io7f}9vNngzqqK8XsHAQRs_E(0 zjCh(;^DbzFDN>J^d;|C>7)oMa$thK?lCv@K8c}i>Fo5I?r8`zB1^q6^r-AD;yy;*W zLCQg{q|B6yY`{C#RWXkxHjs=Nr^bmvP4id74FkKyQ>IK{>+dV0;?X9U+PUnv zp12<%xDnl&%%3&XXJ%xsH?TYBnyKl7_Rk{i=A2ls0DavGGcK-%^&0Jo+Xc)O&8ACT-3fwaF-DFVA<LJK9IV(&J`>);fFB-o12>Ra zCGaqxaJmL+!X70`@=6D4%$a-`RS$%6U>0Gz2cDNQSW8&CdWss2U|n%>Kb?e& zo7;vANGVxNqRpd3X^7X?BbZ@HWxy3o=8u!@r0c%TP1_JSg_u|q&6v@B-V>qk~%%uWx$XUs;%YCv3_#`iAKC* z04NGtnYOW*_lqT!3LPsVSiQH14zK0s-Ipv-Un`r*WJwRwC?sIEhQ(^qEF^VOrpaGS z!X2!&CvtPhU#4M0SO(6aW=TSI$5P?(-%ZX&!EwPZlz=murBje{n7%#7` z?2%o9jG#XYR1O(tVOPa2ty=zNqS^ z(GM&SEsdb?Yz1Y8@8<{kaNK>3~Tk5{Aube(Qcn9*Dg=tm^6FKy{jaLj~r6nylu4 zs!jPqHB4pm-o>Q_!k|CkYYhR)dObUaAbzM<`CIk#(qLuR)d>4ro^YL9$P)nI$H_%D z3qYHpwYLchaWr5T=ukfA5`bXWuwgeFd$G7-16_z`UY| zn-O1ukfpi*g3BRk-UO_ot@Wb0f3{*P0W~tJ6(HEYaGVg}jETHu=5{F<t6yA{8D^DvqdIKmQjGs~MbpSNBRR4f3&yb7nF$QSTi!UnM_wYPCrz*oV@nx; z8f*q{PDQ=pJjhI@KwhJne}vzyV$8cKkl(v1F%gO}=oprHaa0^t*v(kIg?l%3Zdg1e zKZhv){7ABhv5F+nU0G5JXbq`QQB-B+-m`^D}< zDo;1Ff`sT%R5ZZIiC^3Z0lrZa;R|9VeJ%0pl{89r7s(@^NJbw|b_Ocouci*BhX#5wS~^$nDbFF=;o4j2{^$7-VD%z5`q8H3@RP#yL*nUUGSNZO z^R4vYzfO3u+jr#KZn8twle^rEUw_Vz)a;D4b2=5XnA(&ckrx@6+_%z_DLCYF2911b zL`#T@xMa}HIRRVLFfY4o*`W%wR~#=$WT9&%sOQY-E*6NuZn_wK_8BRb2v)M+dFoR?fI+k**UbHt?>#OyspZ?o>5a4dX zolv~q>Xk()it6>R?DemYy3iOnn5 z?(8;5z(HhZ@9LLuW^zv2k#0+4!e|E;NCil2*gig(F&%r|J7^%8t#c(W=Q^Zy2w9lz(F>ejlrHLYWqX!#$y5>1;{mY0S zMK+|*g_JF?1t;g3jFS2rE0IDD8Hv!_hA{Am6QfE}MnXy!Cko2kS%lG2yKfMqS_1Hz zcB{0xMhDHSTC!0OuN6 z$2Ei};GR{~O0=h5Ue3Vru)WnS-B#&)=ZnW=xwUy}bPbF}#LL6aY;eC%{*h^(`_8Em-GghNdwWsxombrVeK%x< zDA#lMDJ32G0Y}OyMMW8xdW%j1Dlb-+*DO*xbl&Xm&s%T zujSI}_QoSOr}*f**w)dOTgA1&VF%tm?N7?iFAi^s%#-LxQR6J8F09@b^1Lbpyx!mR z7PU7HQL=xv$He!gCNA<~@ADCPS&iHnkJ%pGs+J_mY|gd8klGa*Z?rPSL1e-J62jV> zKGk`d_^=edOSOs5!GE%dJvKbuE!jFyO&i4+Oz zB?(RkS327P`GouEXRAoVkw#V;Cos6!HZt>#ExeJZJXgiSU&cqkH&Qe~R1UlEu!{Vbd2_o~O}@hRJG=VTwD^3+2w@ zYA-WEUJ zO0sw+Th)sQP}WQyXuv4YcqEbX^im{q!h{Tvij1f~JR*w@@bY7AOy31wbVUoxr>tVu z_t+hGf@HTmX9_RUOQ0?`)md$St_R4B!!625jm1F-<>Gn%x@H?_zmDF61G6^7C2wuD z?W@{SC*b3oa7W13y>WD0>`wE$G#s$0KNQEN%ih?1IWxZKPpX-Vk`y{DR$(+%>^^-< z-v?R>G~{hJ_L-^KOFYp!@;bg_w&%EuPCAV}e;*Ejbw6BIo6_ZGXf_?*P$?`ivG%32 zavtc!c_FRJZh9Wf2-+LlQtak_T|UDT#QW+|dB3eBYe>E2ri$Y2fwQKo-1&py;Dxj0 zCAO#YBQ)PMx7*zyUu@a2CO31x=XB6tgy1psSEQ<)snlUGdbsUn%-4u2PhESx0$v;S zr3L1!C z$7DQPZ$~AU&xU~Nj++D(Ngar^%gTdQ6jgO7BuR&AM-EBDNQfzr$e2swM`0X(c{krud@U>nhnv~p8kuxn_YfXO zAdKlV6i`48fzB}08R+%QdhV}i;-zJX=j0)jSAu&fk*HPA1oO`55Y-E}bMtEBs^jcv zWBBwK#Loy^OJqZ-QTbbEhXJxsai^dNur)~M6f8hN+6?33Es z(4s#Z@~CNC&bGq*l^L9^)WTB5-E>b_7|}x!$)~#7{QTf-b({q{bp^-K^LQ<&!~1mT z&;#Fs0@slq$L&4yV|AXVxRV7DoEzSE^ZdzVtZ4!9#ZuhYx)^68(xi#bWP%Oy~R?0xA+{~U%>r&psz%>T_7dm9y_R21w zLF1jQOVOT!>{g@RQPzT^lPTP@6>eKUN4b=#>L*^?i!85Wi(l2rD)H`s*pWH7Tu*yk z-*qri9)qVEZ<)}Vgk`Nqy>15}i)W6q`y;V0dtL)BT{IBj-pOLP)jX#=YIoEh z7d(M~MSQg(F|J50#S%@1Urpkxu&Nus`;}Yyc0X`P@lB~_a;xKGB`~Dl))ngLtIo?Q zm(g1B%ncju51a$pmE8E`Frrhtu-A=se7)2M^P*P$ zn3QUmFOzG;pD8Uo7Dr;~NRIgM>d)Pm7&cbae);6I1`WAYA5SjKMHT)i))eC`CUXMD9&P)aa zhREr4YLZzMO%@RnU!$P`OI)0V4CG3eBuzw$XBQDH3EZYd%P$BD8v0mAdal`hDIjTY zGL=Q0i1F=I!FW7>xSYJulJBF_b>4U4H!u30ET`(F*f}PMq=Sybr__B+m5ZFk<$3?Q zV|16Qej2;iqMLDeY(JjO^0C?|qz_IKucY(zB+4XbXZ!k8PQaHFX{yDLSwO165 zV#TVT9<#qL&T`e9>X`9jzNq-`W{=|e;%VVWxqCWjs1%=alx(-mG?>IcQ}oQo*Q|Tr z40hi0g-m(gJTP3)$!4NhCu18mprPsqLT7dw>}G7Hxn8siEo~ROl2%<&-q~O1FrPRq zEaQ6Vi?_|qrIBgaxz8=V22^<>Cr2&@#Uw{?!gV>3I_^SCDMv*U*jQd}c$nk(5F3Qu z^x-_@Yy?HJbk~3&X$W{M6T)R01;BT>y^k!Az-$rVQlr)Oj24v!GVzc-?$&}4bsQ?y zwOOLAuowo!zN~E&I(#!c^u`E_wbw(XiIwn7ozH7nxc^$-1;@ zw-3c)#KA%_B0&#NGpR+L&3$}X6KOp`>W3KOz)V1XP8vj5@Aso66Jho}nT27WC^q1k zZE1jiG3PdCg()kYZ~HD7wt`a@=cJOnZwZPf7S_`7pql&U{V_c=IM;*DySYl=5q3|H zqK`(`&g1K(D~s0BJng-c zTX=R7xZah5DPE!6^-k3%uJl{^zJGsPPUXF|h4ZQ@ckwoued3an<5gC8+oKxhXm6Q| zrFwsl225&Q&>6OTzg?jiwD(=JE8UQmMtY`#r?91osu+B{DQmZ zDHdywss40kCJ%d9wvcM|%&_EXH2tnd)Xz8B5of1=8eJe1 zAjgL;M;;SH7g34#taQJy)T47X<_|OQP>m58xRlJW!=>|c6SdIG_58TfTxz(C^*Gf| zck5bphsAc_&2+Hcna7m!fp7ey%>0FlK&f*fs&bIUnTahI`om|B3ml6rN~NAJ8ESkh z=XUa@j%tZ6XASpm=!|0hA&mGMTlRTqASZgY?(t_4@D3SmNQ!skRm5wiR_ieR#6kGy zc2IoBzM2e|VdNM7FQ32K^U*=-+&pa*sewaQylV38(sszXaK#XHtiUdo_j)ff{FJ-J z+XQoxc@qw|koLW;s0-<&-^u$FkdvN&lYxh=uHE z5eEZxuzQ;MP|V)A(RKDIS@u9|>BtuA`bmeN!P|J84t&jL6r+3aQnW9{c6Q$Obb-Q9 zS9kq5-i`Yxc+IrO#p%V$?a0A>-M!@(x+B+SZld#jO9P}3&w%7N!_*ii@4f6g3ErFA z@zmR#+{d9u=RGoT-}tVF6+}K+s!Wu-+k~Qa#|B1ZH7Sc<)?*ilc)C+RG&^i2&Kk*L zyBG!R8XBLUu9C`lPCV|FB53G5E1^EWu6HwpcD#wwx?ke0UcWxeqF8eY(JJ@}Y_P?H zf}DxQ!smVER~TE9-IeiO_u6ERL}mHd*6^TaUha+7V(|KkU?tg;Z4oBINaw|9y|!rT z(KMQfn-Yq1acj7HwYbeuL{e7*E{?>Xt$SE@8Ror<0F@IhUk}JC*GSM zF#(`2)fa~gSsCnmis4yb>u%bZQbTAo9WU>=WVX&TmRR0z!pDUs$M;n2KI3&QeEU(k zqoJlK@=E%aa=PPa@Q`Y0=H->?sa~jCy4AP-u|1%gI!TnpD^^48yhxY+%yTIgEEp7H zXVpKi;qpFA)57W$wv~DG%Xl?}#|GNLJYd7d(HeH>vZ`c^JWsfjYwLnmK zuvkna0S34K{*Uc2%^Cycu@RmeLTxJ20mw-%5%o9RZcU%{s{)78Z~>Ge2jJ+uXSyrx z?Ttf;**tjqEg(l4`i6ckl54QxYf;f{3tG7H3}{9O`YWMthgo42hgWI32Gi_#`);5q z!zW$}Xxr1)UTt&VpsSS@UpCZe-?QAg+4zM zX^<^CHh=_eucW`V5g*Xpt_+uR9ruUyti+x#-!q%?H6-hJ7*|+5p^S^sDap1kt146Y zqE&0N<`=d78aHPlWvdd>2I@$yG&)FsW8G5=*_;Q}e9&A$%o)AON_SUaD&aAIcgXu_ z$b9JHTSR}z=$=y2{^iv5yaw&ccUzTP&fpzFmrL`DEN0U3CN!ED*PH#DC#}aOnw(U% z;n&cZs!!#)iM0Y8|7t`u(cqto_t-sUAFZW^#c>>lN=BxlI`22X=F2QA z&@UzSc*|!m_xiqF(%oiNr#JPbaGK?j@ZZ5mns8ENSTi?WJ{FJgatF~S6@A@YPVS&D z4H9wi#2Ti|TMVg8J4Tv6zn(JEHP~H*ca4!~IP17{%aYsM=u&=To9m&8N_Pp|Sru&Q ziq9>jJGgs5NL#`8^%uB39$t|;*B(ERj@8y|H1knOo~4T|zp3!;pknjN{$=R<;Bt8q ztCOlK-sNu0+o0J0^3gOghFLtd`0+gVmeH}JQgZ*y2WG3`^?b2KHzAW_=4o$}mizG@ zVpklD8Xy{>a*5N%y85AGZz6Hl7mU*|06p-^{S}@)J4+jFVqrV}t;ONJudA(1gDfy2 z*u4U15{tFYir&mXV_?(?(i&bEa3I7U@#y`611^By*NCcfSB||z(}prlz;o6W{Nu_fNSlEX0Q z#;R)rT==SLHJuzg&3MCsvQoxbOB^tKm9)<}?dnU@QTatty9fmx$C1C+!)GL&r3XeIXxhU(auI1AQWvyohze-@I zKYlp5vdXnz?;jp~xNzWMmV6}ZTu|oO-Rw%+FBrgm=VQ{~d7zbVXLps^kYRhllt6~j znUvDg(jWI;IJR$Iz8sUX^y=nV=TLHcl)mqXJO66m5JShIFvzoFT56m+*-uIet9L65 ziYR6kA|qYEPat47dxl*b!~PJ?TEvWLiSM69+=hr862(8h!&n*ey6tZ$B;+Urjf{+} z$Ariu67lt9MU^*|sEuEP>?Kn2`K*$pvffOaR9(*gcV*PY73B}n4LWh93!*<@=C`u)&(D2VS{Y>3=N0}svSd8}6p!_2SU zF3@%kk&Y%`QX@+Uy!VYOf(5!hWx5|1%hoO%q~9AUVx=$+9{9LCEoKjJGSsFv>D}eW z;|LvVFTBcAL~feLW1jB~8os1V$?))uKdTc1L;+;)Yh7@pj>G5K2eX3t4d zws=5+&T6{aK6y;epnGo*OSk33c9n>xupY|&X?YYQ0TEJm<~5@4dOCcj zJx8mey-JXLtke7SzWY7cb?H8hrTBwGXS!$fE3^6G>p};qT+UXbdFfaforW^n) zl(CJGqmzTNzV#o{*1!T5ih+q0pC11YsfACkh0n&uu8oh+q=nDOLjOsyYT>ic)BnCc z83qO|d?qHQ-`8)B<&V;zmcPmj9RH>LPp|*e{kM-#Z;XGveR^SIWW;A>W&3mep&1zP zSy)&<^_ZFe<&~Y|uhyr8{a^HN&A(bKpOAm||K#vl85lnMv9SHI`bn`e{;}|z`fKYq z#jf>fnfVXC|GfVm-@iuu8{MDlH~*XdjLm<^{?Yjpk54qe<^Qz(LG?FkzkPgqm{&N3H$sfsYjo-|l~h_t)C*&;LU*{&@Ij!2cxaf2875=ReZ$FI)du{@wR4zP~O18Tj8AfAha} z{=xhIC;^{7KZF1I`Tzd-MEc*e#s2B!U$g0-Z2jBopVhk< z{C*feWBK{${kHHs<{Y2V`>pX?@;L?m)#uNI_>}&U{IT@M)_+I++sOYw{W}N$UyuKt z?r#MDM)7a%Kl9K2-(vB5Je=Y@VziqHG|IQpE#~+&MH!>!CcGlnRpNkaJzcR=2 zxoENf&K4{4-Dw|z3SuV+jAB7O%haPHWoQ$cF6WIL=p`T@% zb6{iFf~)Q&pF3#(G_PuohmSn!lKcgV;7z!!XJMJO^uYGe{RKhM0&#clh?&mfN9OAe zLr~N;#EFgBO)Hj8_tRpi-y-%0J5YM+ZL~qtUa#|Z} z4LP6H5+I0$gjvDzp+v4DDhh6TgzV{2s>Sef1g>TtUN74{Up$s5IQLtGR3xrPL5n*% zzXrt_NZIN>`iOkzm-}$$FxP+gqYgXA^N)gH9$FtMjij+6(}{H}+P>Uw$nTb59I1NCoiVaDZE+#m7}0o(#vFgcfm2oD%yKt6W3i$ufL!jEi~lg!eLek4 z402L%DMyU2>9R?8V%$mj^>U=Q)8jp>NBi&b;U5{_-+_1o#qS2e&FDnSa3A{ChwfDW z#MMX#XCn5Tj9*h03 zoq-Td#f0FZ!Jx-hg1W;rv&5OaCG$c;B4&$ZMS|4pFZ&Kj5kiLr8P;_UmR~<#FSE{2 z#&huD8HAh5`7E{j<}PlJ4inLnmt!ZuW1q)M6BLz?B&EPW&NS)z)n5yAbfQMpm37)%}(VY}ISfFxBP zik@WBehs52Ok4`~q>8{KEs@(%D5l97Ks~}A=?-J^-s%2ao2?bPuhwS-Uyz-c3TpJE zGk|U1E_hl~U+d>4%V~RKS@+~O^IGQCYJiD0zwg#zIEPl>2tAwfcJINh`&^ylT8g&OM1OpI?fTjOvgO~p-NWdNcem%hXrF0oJO_$x0}YET5R z%GF@5XG(82H8q*&xkb+bf%vC6UbrC)WyPmZjuBJj<=fDvJ61_yJs%ODghg=ih7sM4tpp{vez@j23t9_+nk${*Un8|71T{TizNu;uf zfG|W;v(GYn@K53VtZkk3mJPI%hXN4<(t;p}%7Vs^Bc+p5XBO>A?VPi(2~#*W6%BPg z(1@l#;YuEKO1+_*v$dO`X*AHdMF5ndF8On@lA;cR#Pa82Yx{G`q83P%@kH}z;!-2W zsovrZ7RJIti>dY3G9ztkajnm?;Qklk;7Q8!0CXgR$O`ygP}HNniPg2wB4Oc%kVWVUZB+Q6b5Mv&%J1l=aKUwx|b z76gRx7b`zs>*8$?wX4Rwf~pfqV16)m#1hO)I$yEBZYx^HMJ7toq@l^3KQVi15wCmG zPYh4VEV|K#{MZmj{5UtOdv_5Ap}-j#Mo7v}V&X_QmQ|-dFDC$xwM9k#$hx{JeY~@xAQ!MjSmcOjS^JD{WYXT|2 zHFGHZVlh+L1(%={FOm>>oolQxCHq>eel3MV!Sg^aUW^@uY^LM~KI5$W86 z(#P;Aa2R{25};pALG9Hn#>HVDVl z@0(%l;D*g8NXLsxyB1{7FLIP!KW)<94H4yq;y47CgdMr`f|J_p*;*=>fO$0IsdIIb1dr674uS zO*kYH6+3O`Xd<&(R1*@Rwm8X7(A-OJ-NfP2je^YeM3$f9~gCHEw;vkfqq=Po~qQYi>GG~N|M=KUDj_gChS`{(Zj?Ws6j2RPP zX7;5NI=CEWs?4y)*pi3-Ty|8@LwbKy{WQp%MxV%1nF}_Q_~nq{-)!FsO{eYic5e?X zZ(YSgFi+oBPdc9>|5>EC_c=(@DEM@&H`(9szQ8gw;m4Xh11|yuNL62M@8hrPZ93=v zwl1ud6RzeDo<{?@NE+|l+%4Qq5B+gDZFbPEP}%&akyxT>(blPgE?{rTMvwL-S!+(H(Y(wG*D=#JBTkPQl z;vFTc54`;gAk?H0F0&TSTF^G{MFYG6x|K!<9N{SwMW{aV3+sCAX$nzNrPLy9AbLnj zgOvLn5ygz6!=0WywA}}ZdXAo~J&Zu?ErD#TMuZl=d`GQ0_K> zk7RMPW0qq6+>x<*M*~wOr(699I4a6r&S)d%vJp#2`j%BM&IR5T$s_B-N=|_tayRiS z;}5Q689m&T!z#zYt49gUfiah>wS6x3@5eJPlksU*WXRUB(Z$6=c$kn?k|ffRD>!D@ z4S|Dk=YFD6#lta7m5X~_-yzBNfe=vle;t~x)&@_M$gQi6n{(@*PS4T5EN^=MP`_3l z#sQPv7Z3g{>-_~1(j_EB8Nf|Z=#8aKnQJEvT$+WV4(YB)(T=-DkTOIgBp%U_Snb-Y zRN5wKbf5D3)y@Mi>brRGrGkD9RKvPxv0#2b4BcEsTvo7SVOFU+Wikx%4W3~q`rbW8 zi@p~snCT!;h*U~^HiK4YWu5SWyZdt|w-N2g)aN-BiiVK%P`y7_MTOqe$haX5)yB$~ z%bgdvvYVl{YlLQFC2q13?`HX!KV~-?bp_d}6r#j>wP4z^yL@%z{u z;;@I5Q>I`U)pF~#i=>h&!c|1%U>fltZQK1I&1PS~jT8^n4&5H^wP<5$r32Qg;GoL< zWqp62L`rtJ{fwIZ2o}#qpJb#y<7s12Y;AJgZXos$-PP2@ze6?`lb-B4FdeTms{j;u*rW14I!pE$Nq?g^>;1 zpPk@SUvhUDAj@l~ejBtYnu3utDMH z-#U24U~YsF2XX@R^qX%rYniu<6=|EEuYhb!rqF(b`na}cyfzu3+9?8Ol_>-d^l$xO z4}oi98U)AO4TK3aW}~`)G(m-a3KAwQP>&Y0RU;?Fz_cqOs205|CCeDg`+8DF=+7Y? zP~_yu(sd34MP%|hwRi?);Bz5<1#iJ7s^EJ_LvWJmN{TEmyo&vK_f z3I>%QfwEgCD+@m4F9BtasRzVHh;v5;8D8zAB7PV}kyg-fghFo=$#kA1Ub*fNJt|i6 z#7s!+2o30*eC_smib~$$J$&2TQ5w%3l(GY(?K^#*<|69(*nMk>Y0_Q;ZwJ=xe=+-k zw=+%eAx?{<*8xGXE+`*vK;Mu!m*X$L0BasZpIABY(oYxHI;cd4|NaR76O@PRTDVXG z=AAy}Cp-{ElGrGcfp}Ik@~`QBpxqyS{RzE8(!?WQ=+s7xp;Spz>Gs@+$U@0uFiR3u zFf>&ABvK08$#6pq1M&`yDS5`rG&W&aO~nMcoZrN2k!?d>iBj!h#3u2%MvbWH6h12z zD+_H$_C~-haL6?V>>Az-I%nm=lGGvwdJ&+7Z0$ zj$E;0vX0Peqo-m?yR-r6EMR$o_N$HBbHrw2af9wKa=2Wv%fu+TQL9-pD_#gQ=4?@# zD5o1~Dsm?9|ME@L$BbOSxTSLWU17-J(2X7C9WD30 z9sGmn_3NX4^}~0XxUelfrYRee+Wj|pzmme~lnrrUP5S$Lundt`d}G?F-`y&(VAUR#=Reyux=cM^J3-s%4Wl2 z9LlwB6hJ)5Lw0;XV@|^lgY{F-h{oYv_QaK0cgMlq}`%MVk&jpy#jCF*) z7;~0IO0^9Mpjg$GxJe1W9nk^-atI4DTr(`RQ54_}sTgfHuznn+Er|Id2&x16CbvMc^s+dO716xOm4P#dTRYZ+T5UW%Ey1WQ7xOeD zrzSOl;T#fa@u&hcwnZ>7b&b5R0P!ZKRDVLFYl)TzR&H;70_%+gT>cs(ebWk*fB15S zhn*^62v3Ip*<(Wk?ErJj9$#p#p#`qjdHY4q6_2g=gW|@)(9l7Zv>+Y1{?9%V)9Q;i zqQqYI0r|6QZh4-5m2F#CxPlHy#91`?<9XS0&ry;`ZQKiOnFAq zYXCzRL&nfB#d|n)-Ly_5RL(%{Lcen4CIkwWpxk$)k|hMTFW`;HO_F+|)jOesWV3JF zL3AD#{D*KdOY*=9Eq!^ey&emvPcg#aM)!l-XuDo{c8_76`j7nlGvV!gM{!QKgs7Zd zX&jYQMEV;dv_6m;;4Z##^#q3Bi5W?WBxNx<4b&T3)o>Y{+$PiVSAf`9y~f`69g)#` zo=OjP->)%LeIjgkMJL)XSAXm-&oJfW_HcPUKbc14)N~X3 zdI?_4apiDI6}&g;RhjnX%9QD`%?7-Z+R^JkUzBh3CT5LeOH(@F`*|Uto3aVMhRsl` zUPP5}4cH{yKviz+rVL<&(@>nSgL{ppg_T2}w3^nOc|RQ_3UFJd**^bpAHe74_PJ^@ z?sJ8&N9BoaVb#vKgsVsGg?uUoJOYzNISvz=P^d~w%{uFSk(zN! z)os#ildg`V+2bIZa!j)tmSry(6&09ds>G!*;;!(EB2G;Vyi$ND^WY+k;kS(UgCOQ) z_aSbS@(h6B;zL^X|5B=$pv0&xzq(1SI5@k}o`btBzDpLec$f(B4gV>JnhsQ3x9nqD z6bZ!0YZ9j#<`PzI7vPWqn)1o>5?UG%d&4s&ULcC%;w8XajI+vmb(FHeP{J!T86Xrx z2T)7a1InK7TD5Hr~2E6<@h1hID0MD>JJ2G3qs==NJZ__&(LqW&l)U$=Erk-}x%lpcvHsalyd z(+=!wOLN^LVSD&o0w1AK6P@J5THe)cxM6IKLKqy=zo&g)9<^(!rOAqDaMZnVe)Vw} zHyLf%*1_N4;d7<}>apv2UVHm{HWJc#$! z$xBK_f*y;cnq1O0M5ADrL;#UO@_aQGabd<)jYNK}iM%JVKMNteW`B-(ilOB%n-Pe*K6ciqB|rYsxZ463}M|S@*SePy7+vZ zG}j%PH8u~;P{>|=q%~SsU?8aocO6*VG_)TJ0W}I`7B>*ZRRXa+3#fO`n%WbB3k9rl zh2!Ul5nk`Cxw)*+(0WdZ)4Q6)^PV6*rZH>)Lfo)GaW0;(0_aJOYj2zUflD%1z$b!j zQ*s1-=ayRgzb4J0pp?37dg!(-Vcw2a8*PQ z#Z$8rHHYJTg7yO@mXCjVT(V{5c}BRBIUu-%0Pm&{ZC`Mr43#E8lSea%C=Prg_*uej z@?Na~KdGt=aMNeLceBsNFxNOY)Re6w)Efn|3`HfMkX$M+S5F7Fuu~q&3}_m%fV8YF z|4;@!yWMai;A z(iZD8ZzxS3=(YfQFpd;|@=#1M%c8pbbd4C7U&YV&r{W8O~3T7JtRlQat{X zX)Re(o+Z)Y7r#^yrypO^xFD>RPQ>}{K+1~xat|`5iF@oUOX_n95#w6nPMBPlWl+d-{=vly7yE1)8Se)CZxM$Paq`9_szNVK1P|VM~%(`A>Zt&{32+5Tu%N z#E6g&{NL-3y&}ud5jI~F;3UfqGf%jIu;5AJRrlNC4WN{5aeuO1uOTKKQ5%h5o0 zc=?M{ed=(8swAD;Ja$5lU{^iu#_9B~`7OG6A^vYK=CNY4{`_qja@Gfhs%CksbU0V) zT-@dJ5pTRCH`^tg5aNta<+1mc?9TGIt!drIQ|C!YbxQ%c+sgAj;wpD`3JpLDsZzUo zUlwBEFDg#5-fmielPD)-3TE172I0Tx~0zr~vbANMIp0cDIq2PDN6Yu35e3!4Fnxr?yx(g1MqBbWC zoDJ!?f;#v}UBN_POlWgP9Nq3MIYFYSAC;bKDG{_qb(V93^Z9YYcg4OXSK4 z>T@IB4^Ml5sPEH~_kY~5H=kxSk{B_+v^(-ivZs5b?~`YBl$868{;~%PG;s+c_qtOq z7%C2wJ&Mo_7Z3cc!2VfBS6a8(DDjtktz}p;$+YyJcli$_;-20K5Xk>YHU(HM_&E?Op9 zJ@sol_#(QI29)}PE}b*a^6k-i_WRtwWVh@3V$YF<7t~ALJkHL%sFjKfmtAPNo*WeR z$*8D*G5HoX30vwtQ=J@N;^_S@#S7X_i0X}dR*-;5v>IqFpc+Aa8ifpApC!m3zcj?R zqfDhu)|Ln4#ZRp@GqMi^xiP-{;$10$EyJ!n3-h_;HI#dBTSTeObl*oF!W*Bp@%Gin z6M-7K;#!`t2=mG`S=hF1o@1WktxAj;FR6I4!F+$j1DEp8*ZNMKiX+$E<9%B5IWr2? zU4r^G+GR{WdemgL%fukcanW%OEx}e0^O{Gk$co%|Tj+_f9L(j^m)o=BYf9sHNja95 zG;zh%Nz!>AjnDmaJ-s43l20H_%h7(O}3I>T*ou97r4-Jy6NY?6Y zYik_yV*8b1Wn=9YjqMB$xdr=uToKJ(D>uQX19o-jDrM2>xl}UZUvi}ux+S|yw6%rvPlQgh~~e3$wmR3n#mRoPO$2ieyP zr_brng+9$RC77>lk*Djs6V5odW<`=ja2*A9%FnMgI|`jHlaVSM%~|4WT%HUPDad=E z(QUW1Sk{$cTNhULpUtc#8Q$b9mMay!GgbFQ^nIiaU0`QTl8N&dnF z`GCT}Du3_Ea_g=FVV*Vx*T2p)avyqPxqrN5rsj=IIDz|9OlpbL^y-^A zP3)L8L3c;YfhEs3?7XYa&+xjcg5SF(+h%U+vkR&+&vrT)ytlcT>OT?Q<8IQ6fVR z?Z!Usv5lJCKE~y~3F`c-1^x6z*R0-_4_`bCyW{mL+ulH2{WsoLe0RV!VUwSCmV8Ia z$-OpN38Ri%0u!NUw_@A^oE8NVHJ0sz#RS~y% z^!OyEcqE2XVpvyR;^I55P~DZ-#K@hQaker?HcxDdI?ym4-Ts+#6MN{?7f1C%}#XiA^8=W;iztwf6_frL1Q~iq< zr59u88?*v}hw2(u{@As=r1Wh1t&z#9;NU9Tvv(WSZx=qywNW?!sArvX2AAP_Mk!WD z?$MrR^P*t0(^7F5^Vl=!SBLfVA}rO>4zU3BhAdK zH6}^kP7m3x-QaNU#<>WsD9qOKhxWJ5m}nd5oi%(P;CRF=-N|rowr0wqj0X>XTL`Ec zN&lU+x8ibo!t*+B&Vc5$L0xsR_&D_7-o`rhzF57)09#ev^vj$#oiZffd8Fqh*@)^b z-Icz-Q(gUj%C$bR4g6e#ffbg(7c*CJ-7YCgDtXWxtuFDngkHDD-0=KOyOMB8+u(5E z%Ez4h7;C~^AIYbs7I>gV{XVdD!E!NLhCNL(puZ|DkT>?`$76R}(nM)~_s9v1An!W*~NRicc^b`IXgEjD?D`} z!p+Acj~WW~3N3gQp~1%ag4EG$|GFU=6J`Jpxw=tuqrtT?-zm<=YI1d_7)vqaSN{E) zzue1y4jHN#me>*Ac7h^*2A%fwb?HDuLHW}x0?lihKuDNtxRXDgB@jcAGuiE&VzE46 z6ndMl{KBaLjW(!$xxu1!1*n~A&wvsxCM+XkGtGOO>LdRERHT-<-|rGUzdg`k zQ;$l$&T_#ytH1=WeHz^@ovWMOPS&|?=iT1V7ljhorO2DQK`75C^>ref=GMgbH@4kh zt$dz%Cl^8}J(L4U*4db`YHe$8vzX&HiOjEY4u$JRK5=NkW}YugUr^Ubv{)A9xez_^ zY)d<}Xz=$Aa@5FUk{wO0rV5iElth&v7wJ!F%(NI?M$__A@KC+!!5P`&(mt0cAMxHn zKcB;IdHXfuTr^=Zw;5x@OR>t=tK1Z-jI!diUF1q9+tLZ)`vR~f$Q8#s4q^DEt~VdI z#Rxz*7v%uLYmzuOYO`aM(MQ0cuMOdr-)~g zrFLDWhQ%K%o=)(mtxQoU+1O5ZgXCk~&DfFs!*py@1{d_4fmMl7qW1~;%KAg2M;50M z!wMq)Z6@QR0o9DR9#4gWHC^vj+B@f7iS}Z6_1=p1(O8|GvX{A)*wgeVTHoQkbztj9 z(y>^n+VYiX+O^^K8%g^&K#rXB0pFngbr0e9&3}4s4kV~1iEd6br<+4{oh|50gMsF$ z?|T3dI2`iFO@9gmR|j*;3nV(kf@Ez=Q4}37E*FK^5*0=D(V8$#2W66t?MZhUN!MLV z&(i&ZC7visP*QM}b0s^Ffo>qKWP6H}oU5X!Igx5Xk^}x`nxUeQuP*cpilRtaxC|Bs z7ggd?pb@R)bX1OiYXqDrirUcW4suW^gTatxAZ4jEYbYF#$3tNVC;}k^c*r=pQRwEb zG8CtS-y^7yoGfX!4s=^81;UJIZb5aXD~gIjzQuL;Auh#9_Upi8EvaNE@B|bti-a-* zL76Roi1clAKUhFx6D|K3vV$|t{_B8=mQa#CiAmSQLP_8Ng6~^~^SLvViG9Z>z6lDO_ z@V_X_nNqgzWx0y2lY_mv8&KZp+0yMv5IW77#H_-B7++oBfHdo$-d~G&109kTRM*y> z1Oc9e>Kj4e5EKMq41wxUsdV532GN14QLLyC_*an>aH3+QfJMQTfr?2*6{V`Gf<~d4 z#nO+plG1%6+}oR_Q#tC*I0B*ftKIKofThrR6ao@&7d6~#&-ptU;aod@soj!Rs=s0ps4VcC25L&E~X0~~~RQ!-n} zS{2E4J3dv3e5%GQJBy?`{T{xi&Te>;UHFc_2m->J3lXA0_$Mnih{KL4?KyH_kMBNd zvp|bOzB-5eX{i_0Q~m5xHwv{L6K<_O@bCyb>KHFdS?b|YdHN9v`cdrk5$N<$!uATt z_DWbt#i5W&T!%TEc;!ZTl%K6b)%N--w)#qi!U}GYi7L_g3Z9Kyt9DCQ?|M)n8DPd; zwbR$R=}>U*8U>j++QRX`TxMyDMX<)hvv4qF zZtMLJFcb{X()~1M1dO#0z=mDlF9L>TD)ZL0#lhF}BH%EV+#}#f*70ExOtIn5@vvy7 z?D{7gpbZ67n(J*C%=&%-4+K+dxNdGB@T@jKameC_1T>24+adw!HH!@iVnc!0&>%KI z-N+ITWIiK7IDp)S=wSjIItibSP%~2wa*$4gaZr0fd%1U>bTeE84JRJ1K|J^#Vl=c zARIUl4jc#v4uk^-!hr+fz=3c8x^A%9KeDE(w3D2{#C2~^ZEe?)=QRt;UFALRsXs< z35SDl0P7{I9|#8=gaZ!30n|RM@mQ}191g;P0O3G@Z~&i0n|CHZ9zCd z>N+^cdJYF!&*32JIUHm?hl8!>EOQcxLj%`sUA=+B0M~q-4G#m>yq|4&3<_Ag*V}Nw zdbG}lMF8(5>uo6DeSEzQ3(U#&HXQJN^^*;lxXkPOvkeYd*TsVa2atn5{OB}uTYD0X zn+y2#gl~6T=>PlMtbg1{nbYY1sPBO>VX#PUE-^9H)5p2Fz8C#4Zm$2I;X%*PNG`xf b`Y=ZYW!{YH(#gzIAag7uM`4kuZzKOZ$}e)t literal 0 HcmV?d00001 diff --git a/examples/insurance-claims-agent/fixtures/sources/nfip-proof-of-loss.pdf b/examples/insurance-claims-agent/fixtures/sources/nfip-proof-of-loss.pdf deleted file mode 100644 index b2e3c23cbf8775c419f8a14e0b17375f9d8205ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 588772 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�Tic%;6^V;}W&qHmM7W*}=^KM(KjNVQdd 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

    #>FvjM-mG;# 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�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 o}WDS-rsh%9NN-(yQS&a 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ℜ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

    TA_)H$fk#pa z-g=nC31xUTDx=Byk48xds^x;s;&uZ6TG~ir5TJV^RTw&T3YSBKzZRau*JkcQgbuqz z!i;kp9?!9jMW`TfhY1#uX6q9*xxwJ+A3Mga7!A8;+Z1TT4Vg$MLUI^ibL%NQ=az@& zMO|n6;RBDv5rvv&!$JVeY>6TXiF6Q=1b!IsLxA7>uz;VGZd#g_L?BVstqG?_m}O`f zcC%;ZEL@ynw8O3n^<^kNMsY7aMu+GX$`I8kxMiyLd2O$VYePY^!h@2Bq zM!`PL%MBr<{3RF-d6eufde%$MsOW}c5iH} zU$(ZbzP|0wrhPAMY2Ul=iF!M;to|`uVDc;)!x!-gJJx9|+GGfB4EUZm0}CG-eJ$viMI4Hr}Kj&fuIdnN%*hA;m3#(&1J zA?ExD8Y7)fJQ?l!5Fril>ZX&_uzf0tk|8oe7-3v|P@~FG8E}%jnayl7mQooWVk2yZ zQO3L;qVg!L*CSYhHlNPsu)79}_Zvjd3k~NX36XA$X>IDZ3jDcp4OK`oHa zy<$E$ZNnoQa*a$q)Sxv$5JX6F8m3%STPfL+06~?a5|O2TW~(v)CEI|KEKt&I#56`^ zMpOquy9nP{@%#+IFFO^>sK2<-!c+h`2Jng>h?+Ifb@&h&B*Ww?`8SaW@p@PhWKJGd z=(g-!)D2;aBgHq)$M^r=WP^Z_r^m}PC8d*Oaw3qiz0O>+ zy+XtU%fyc|;s7(WbFlmhm-9H8KUY`G5*FZ!250YqEpg^+JQj{Gas0O!r{pC6V`kU7 z=oWGqr&n)ZyKhar%{Thb)z#a-oq2p!)iZ+EGx#{}2Y)Pht+7LhwPGY`f;Y+Q;jI#G zB?QKLGLPLom7C6qaRsXtzHt8({9*a2dw-t-Jbumg6AsUkP|q183B87llz5sYQMVbW zM0XM*bG(z;j&N$1r<|#os9KyFr8#DWGD2d(_#x`=4531fD;J!f7YuuwyEn3 zpZA<|zxA28G(bQD^kv}9F^02PQ<#ONeolS)gqc|)zlhK8^Ao@>LPu&tV=IQPT8_nhZF z=Y5~&d1ZzWp#%}`K!gDp0v3j5K2gJ7!gKoaG8Y38YLV!XbX<(i!B6OOBl^MT^5Q zJzw?;y!#5u;B%KRle;Q;4t@&;*3F`a)uBijI-y`Uh-3-kq)a$R=G-@ z_d^U+OSQauQgv7X%U%Ull{sChfTD3k*o$&KwxX59i;-W#n9ume>Nt~R1R^ZuZ&eK1 zYj^CKck<-CJ@D4Azkr%DsQChCEqsr!C)?x^sN_?u>N`pfTrf0FB~jcOT4%W*DCOz< zq}*SW@@+*Wmy#tZhr%y$o-Qdzykx-YF3Dclto*mxXg9Hc@e*GSB z_t|%)kha$7qOIM!3YBt=1k$FPl@MF{HKC3{pfsCiMAA)-c+Kxt7m4@go)<#Wzx9E zo}MvzjA?Z&LsYZ)A!&=8z=~-?^HEBE{ z{avV3S*mKlTpHK3W;Ysitxh|jy{BY+@2s|Wt$qh~zSOdA9Za_0<@Nak&}(lmMIi0R2+Gl6zG?ly z&(KJ^Os`i4-EY$M41`spShJGmGiABVMBJl%@GBoI^?l^K>0>v2@J$~?eM#RzAMh_oILZ^}57t1PAi5}aD)Jt5G3hHLCC|{-Gkmr2YBn_Qsv3sE@6*eQ?Td zr!+r((fMNduiBryYQGQT;gCH8vtUZ$ntYm1B1tlZ%mBlBZy$%3Ea-m(rcRzSnaXqv zr7!xSdo;`$538qbo<^TZ_oZpN_GM+SLf0rSD3mC#V|%2uRQ6Q|z^t_{8xWDf@+9vo9MaqOttmNCjo9du7^)z@ol+*&Xg z935n8FrG;(u{x3&$k2hzAH*o&Wtj{y^jJkID%d4vCdtgks5v!iScc^(OO_jPgQ`aS zPMdKdr=Kldp3jy1Oz*0J{QIc*$T#WSP;M}r9>@F|LpRLY9;=XAI2ZS4WP7Og>p90@a&&UT|7Z-h2A_>4rr=@pcu^M!b;4PR*k z1Al67lTY`|?i}2)1iriB^$E59{iy>BH|R_)Z|#WH5BHA@>OcDS6ZKD4U7psE z7-4OPksH_f8`n&l-D>`E7-UbJm_F;rv&S?f+UF(qMCyIUL-yzP(3~eQ6R;Y1BUZyO z5+lvz_z~jAPHRMUFj*<@kbfbwO5dQ5azD69wO$>rW?mi;Y#H_iljWmAqv&WU;0c+; zWt!SZvrKL>HCHfNW#L2D-WVQEIuBRs*m(x@Ksdm>EI_L2qs1n`s`Q0XwGyGGnA=M< zU2E2us)=^!Y<@sLo4CD+AGA8{Sn&?`FP+0pYHiIW61Yj?Cvgx2VL}9#U2KgZ8mS80 ziRwUgRi)Az6MGS)fx+5sQ#fa7}bv9B#yGGX={31a zi{0S_+WRfGP-IlbZ4<^I}UaVw$wjl6>VpBc67GRZtb?}%=SnYlz z|6?)4?|U)~tKPDSiw5x1dyxhtGl`o`1ZAHL?3Sjzy=KkR(C*!v2#x_UMQ=_met{^0KtS^P8Bqb% z4Z`t8q+>>iYC#es`^X5nLB^;ViIF~-T!yK!fG%N%pk<_o{FM+NK_3vb69fYmK~f4P zqmcpn{ZvFq#3q&na1n5YP$N776)LC#&J@ru1tc(x7c!j06A%wxT{*y|{V{qGil%KH zs0S(?M&K8QZEbW706*AefMN@7kw?2yZv7@7M*My?r zW`-fyu${A};ydHVIywf=oIwMqd-?w5nAhIv-QTOV(z@;jY3ScOFw@v0tbw7Z&>3miVAy5&((tu`ZKtARqp(}R?MXY6 za7A)Wa#Qm6Ah-;rj)jgDj+>5uIt-=mh3*w@QZcn=YSUDr_&OyNk?N(G)F-i$>SJYf z0&G%KR1aUt*YSkUj_N||E@)mz)7?0j&=(W$0&hAc@ccaQQ_8k0PMzo3BfSS6X;**V zezfNW@BZj$!5g_MiTG_k}xMv3qas{Z&;-dG)dPt6zMviq=F4 z)2K)3WIi0S$SySm&3!xa91LDVD-oWZJU1DK93>9ikA@I#XORnJBzEx`Jm!3b3Stzm z5>e_ERwN1$eNqJLW-5{;CWW#kB<;g}aPec9#h8&{F3E;O=q{7$kt^jonaGLI;riRC zykWAz#8~rml+D$35u`&GIFvo1UJU8^Gv!pTRWWdZr)go2Xs4$9Nn52gB9rrz#?^g2 z_tDx|1gC0;iw1H>P_Fj%P5;O0`i@WT#@cVKhk}4!n8u!m_+892CJVg~`HNYWogo$} z2tPn*FME^)AMg^lmpjU_b<$c1Z@2bXv6zZP(Kp2x^br|8<~A@XX_=u}d^wM2OLL`7 z63JIe6&!YyIl3H&9P9$ua@U(KLM*CB%~l80v#NoaE>HJP2QIbnk|orEyD+wRQ(XX! zk}nMdIhZX;Kx+tRSPCpSfb%iNF3G~$Ks5Ng>@!n+oi-G))!SmWJ{xO$#%Bbx<)R;w zEZD_51)n!9l?}L6i__!8oHIM1dW1@$P9Q=e+g4|R6_5tHN&lIsyNT6kG_el-XC57; z9jHH0G&n)sb$WFM8C}&Z(I?Q%elFcOS*__|CkPp;GC|#tc-5kOFjkY5d%kqf>m?0c z+E?9e^Sa7@R#MWk=kcKrUYqrH%Wn=Y$1jzh93L+1Y(6>n+05?x)e(p1#IAF_o0^t1 zKkJ&_zV*R@L+B@c)ukbAPHivx?W+y_^UEX?y;o2+ToE`250lNzLPF&H288yAXqke} zIxjh|JIM(rI_x~*#M@nH!&DSaYf0OZM&|kJ{jGkIA2=R39k>`^tAY)|bwLu%YRTG? zMcVVw)iA0FH-$Hb$!066u+~_ctmFqf>a_pDe%(&&_7qD{&Oxm?F|e*Vmve69jODO7 zIeU5J=2HZpO;uC4OqHFf3gW-qhi0>{Hc!kfGhgPhW#5GTMN1$J&v_vB9qF6J%5M{E<$UOecR#tKkV!r zE?a!y-38_4^N*c-HSqYW@gcGFm2F$AUdCRnduwrS{u{qL{T|{DH#A>!qu0Oq;_!Y= z`+VtJJKFmD*Tl}%C3jUVS~Q;`FCZ~U6zIrYrZqA*0~cV>?*)b$1G!^HcU07$h5Bb8 zk2sKy()Zbs-A-JxFNp^y@uNwFnwA`vhE$!>T2Kl+koS3f*C_)hcokPYx6RP zpD$j#w!HZB(3}-3=7e%*uUa)b7i}8)Zq4f9j+Je8QE9AST3cLMSzNoczEKgCbt_w& zDypk1nwrb1s>*a^#x}}Npv0exWVBm$TH<_z)`E^OsAdlN6N201_Xvf0Z?luV4Y6H` zj_4JTmN;%&DBg-}`fzDgA5g&X<{kIOc5KGB6D={|iibVDeFy2zlo_!tzVk-IZUf#( zb`xx^=MkR-V$J&BJM)D)eX;zH?5zBU@p2E2s=DL&dE9%?-rT)+@8;g@ZuV|+H;>J- zEF}!PA%H+GU;ueYpom6Y2^6PAkUVPTAuTBd0;4>1kOCDAEyJUZqtnC+2sNVt>evV~ z#aI|E;|$ZmDg$=LnKGKCzjHRlKk6Ud?CYGno7vy@{C?lx=T}Iz?JGxzTVsY%AS9}y0WwL$>VVHo1t{S6g+RCRo)!Gg+H;rwa76G`wjf4@rm)R zL5~@@MjNLUEHRiya-U3?EHg9hQ&^D>XJ3nm50wO!#07Sh5yaw*z|psJJ{G@E@Ug&D zf$JS`7eBQMFp7_2EX(mVPQTp0?oZcx@w+{%x17qqcjhCUAlF`BG%deWs+qCq=xh1k z0yVhsi$4%lu})CK@EVn%a`dXVMmMcU_C9^PzF$ACOR6!!IBw9j0le76m+9w}jG~h$ zS;4TO>j}SR`~8}s_p1FWk<}8lPNix%9k8%v>7f`dvi-WUUpuamaT?ZigZixyoCFq* z5sy{NuD`)Q-@gP1qc%5e6GMH%$^}*m%eaxr<%%bC$tDL%5TKo#LwkF=qT;_vUz4O6 zK8|L<`f0F`=NbAz-u~U=Pc2@s?V;v(uO6IRUBCJ#Jw4~2oxUPJYvD^iJ>i&7?tfT2tZNPvl#PWhYb%T=7$^{ z(l}!F16qz9%ljMO89FO!9SWWIsfxM^o|#Z1HT-=^RY=-2YvqD*9Yd?hyj`{Xk|ST} z8agl4ywr>PA3HoRsP$@9uK`0%>OHgp`V2%M9}p450DV937AQ1C$=y)q5=jJu9NgsK zZU;M2saznxswAP0*|BBr3mi%Ntuz6eA- z)E9=3Giekt2O)lQXpkp@0GV{ctSH1;&#{uf-UuP9%}vTKd1cyGCm3waGhs7Y8Dls zASAyf)(?yI2)KSptaG9w#zKWG1OF(;=p-V5;@f>%w$HifkQvTm=bS??K#q`W0bDBM zX8E>E&f!7)4@^UTe8i7!C+Z|D+qNtl72`lLX2qTra9oEcphg`hB1L_yC_6v8B-$FK zuSDO8UWi_eN>MwUjwnSj&*Wx_SPN@oo$L+P#}t(^NptL|WpT;fu#>ecC2CX`T&FGE z875(tXjL{UyA-N`!JNwpo8^ra&VjetNJBqA2tMBpojnUDf?zwsbFbrUbO5e^9nIsz z9?Z144$K|7qXVWwG4#;-P@#A51F5q_LY83gC%SC?6G!tePCOpkw)DYCQ=hEgmw$0w z{x9UK{AYV+PsOS3#dGlV>XxT#vy0YO7w^D7P+nM*f75()0jS&nDvyHRnnE{DqEg7f zkQT_QQmOR5bXkH?29=tnB&=vW zt(2Tf#)#%7G))OqJE`FwOHtZRlvGzMp5norpn#@gD!K^%4g$g}=*)X=e~v%6#kUWD z!tkL_x#&>P!?+IjG$wa#zD{U5%zgzv2f7h%&-JFGrsPlWU)DB#?#_+(JlJyo(b2C? z!T0iwIXgQiKEyY$mH+78`FmQX&DNfYR4r?m*Av5O*jPGkj<&9_!86*u^O`q>a)pNm6ANk0-KM*-b`T8UBKO!-&Qlb`N`mJp*%>qB^Y7?y=vq z3AHVoM2TH&lPUkQ@j83EP3&MYkO;;IgYL;HsT)4(zU7ie7at3s2$R`i?1l~S2n1$B zP|Bz^&*j=VG{cQgIjA86;5^tD%;Y-w4AT+JG=OR_#y~D|Ye*DeIVrrbGFi{HsUMy= z3#u`}Hqx23ds`-tY^={t9W{CB-nBmfO+d20n!7wvzxwdZl|O!N$MPp;9&W8qET4Pu z^vJSDX3cuIeB|kl-7|N7oZGymdC{VWwreehG)kfj*-UD10iyb4pQPoVv4Hz z;y}&5qIe=+fh!!Ai1>;VwJ?md`F8udeH8gj-xzpv(I@+SzN*TgfTs3KfO#O_^I z3~a(`n55E$p22{ls*{|Z>oS~?;Sc6W?yb-?CO9KDK0VNzzxm7gVWY>4F1o*~H$O4j zL)*_R?p!#R<HzSQ|r=Sxx9qnVM_;;^sreU0ze=;QPm zIwd+z0Dd*9l&FAODpe$(ae^j2gT!eYC6vlcL0CFLqu%U@j*sbo)357PRqs=qReD>+ zTiITAgwax#V)wCTCLLoZ*q<3ym6OW*3caj+u8f&(q7}3XXDkZSAEUH;?@#kfS3QUS!+6yPM^#<%`|+9+THQXvck(Ev&OC>e$zVMc|aRa^K2v^Y+S#bN^afYQ=VNT*N% z+YAa0G)2Kyo3XYdRVI1#oVy#Ec5vFv?0fg^Y~DTR_dECeerMD3D^`{J1Ib6}MOtG2 zfe(%LQ2%ptS1z(Ir4bf6fUpld`O$7aR~(87iKn`SBOrvs53n5O+#xhr9PxS`)Mdh| z(?JlhPO1n5smwuzX09>W8uKIbhRJ(PI?KG*+-`E!44V_pUQ_WoOgbArD)*aQSF|id z!=+OyR1XO%eFy>|aJj!fU2~W#9$Bc#^-b%cIsu4tpfD$}P>1COZ7#@)E|X6hn0zt_ zcl=NzpNpK)R(s3#9rO|}v9st|dm0m?t>3u{ION(__)xQbw%I;JbLqSGMDTj0P-}5O zB8x=8*|uAWYDVXK>O3rzMJF3~8f;ReBEnoT>Y5Olz=GZ&Rt%^EjqrF}1k$J^=DK(x z5j;w~#0NRKNtCC$$i!d*^6e3pu*^WY$h3JJSzuNz#Yq(#J$8JURO! zp+eM17+s*X`~SU!0X5#R=!m_IZaiO8`0TMazg@iMH}BLYVC$;TU}R7# zD+7Zofs#-aQEB54D>Sbeyvn{5uO)5s5V4Ns%jpKdth#gfq2k7Y^BK&pUcW20ctU`` zdQZdmYUa^X&GZ!j?%}(?e;eGGteOT{H8GfSihrWe*WBH1wmV8)kqDHF5ixcf+$%gm z&vXyxgzKF7e2j(!)=#HOLO%zroPZRRODD-ibb6eY6R~iP*#Q7T)<|0FLF{GTr2dwR zmpS8Tn;M^I!_xcPs~6jQ=mU? z{o~6zeL}}hCl8Ir*juCBtYGv#wjB0@vv_W!{lLad@*uFT{Cp-GLfB&&mTs2& zjJR>u_@nWOAvA7yNG^iLc=T{yULtB7gVvyv1TvnAB7kTBAp^%a#s_7W!z|EWOV3v; z?OIYQy6%t*d*vv}N+z z*|lxos;TLG@R5TX?Mrk&Te0UKt-E$S@yuOw@~r;E&aXsfmiDf-uP-WE)!R%m?97qu z+}8)kyRZkOQUj?J$AAzQ(2}y;W6svADqqs`AY!B^Eo_)hz5yo}OhnQs<8#_aN7~z& z(hhBU&@Sdf_GNQPl=PRgJN=~0gMDb)$32fd~1jzqf0xQuep6a}Fx%3ujj zX4+IgynlG>R;)F6R|!4M7E0CohLy|_^j=1TjMlN0teNpFveUT_=Oj864kB~9@PsPZ z(m@vGU}QK^uN1DeKJ+B=jGcYqK#cl+He5ad+wXZVZ! zDpv%rgB#BWr{PwF=7K4dN?o2E(&&Ijf22{SnOdH$UGq>8^1zj-lX?;g!Li? z?z-BqN`pe3l4e>)dBZ__-~RS?I{c;$4S-(XYyTLi4$!~a>(ZF8y?}|3Tq~J|(}Uo1 z;#6+aa)$LY5D=ag*=nGc*xu0>w$eW%<0CI-aDE@&sguz@!k}cPltN};6y31!Sa9)q zJW|g%3vdsbL;2jTh=8I9)(cAJLojZh!aF<PiJY?m=!eo>YMpp^SO#w>*v3dmK ziVqKl;zUAX*#95rhu}*k4inNZ6(u5EKE(qKj!7W|*~AHxm}0yTj3WRN%`DO!)Fb$K zl;qR0`ejXUL2uY0;75`M6?hP^An>g`ZNLN);SXicnCUO$@3+}QE%u+K{90s#E@2fTCjjVI*^j86bF0!kSIB#yYVh}0Y43|7-sguof(h^q5SST+6+&)L#QRP_RPy!AILeQgF3g)bgFS?VETDotX z%=C?l4r%^ijzgCWM?IYqg$`2HG5UF12UFW1T=&RlK>uglJr;kZjDPR{j9*R1kEOsF z1gZ)k5h?UI)ohi$qkagsUQ#wL6&~kRd;y14xby!=CFAam+av=N$%DcxTSx!4wUz1E zxqKs^LNcFlL;8->{F?Y3!OeGA)s4AN=Q3YzJeRGAZj3S#)uXH-)DmJWWWqRUK4~(q znFAN%)xFH?&T+GpHbY}R5f?1LC=_l`ksj7VVq^VIM}10$F%#9g<<4&7NaWv`Yptic z^Ohc!CD4_m#R!K*?1}u^Umn|HUwEqG$<0@2!Bcm3ymJ2|KU-A$K>fbg9{MIfW&dJx z6h=x?RiIVI`w{B^Y zP?eK>&oOD?bH`CR2EgF3BoXdVi?Z)XF{?oT4%6Fui9<4Bpe9dGO)rzV!_65)pQh*M z8G2bMyJWv^ADC9$cyL>MQe*eO=&t_QCeAbbz29fw`7USQ*|Bpu$BCUd*v=2<=Oux- zA!n8Z0%-u1GJXY+*1{+hNZJBhx0aET{Ifz)16@lgbkf++G{Hc$3DpWx1A|o?Q5VsH zR+T>xqg5lZsX{{~X76`SApK*qWZ(Cl&%S$}_kEt{9r(lM%G$xdUH$7AYsw74mVI3v zm2&NaU30o7AJoc~9bJQE4!mUY5 zr1cU;)to{;w<_55IlO0$;|2^E_Y4{|$_)%|21rhWP#J<*)`1tgMRMO$l>UUwScA2$9p;+i)Z8cG>8Ge z6W?`a+5sLLND!aKci!3sIHG5D*xTlVXmEpJSFs(M)FLJP%BwWpobhq>k(KKBX(^CQ5@8&QTC4%w`}6 zF`-fD5FFQpdjef9Y!GNbfU^Sr*Byb1330Z#KxDhb--&dE2#N?-L^vUii1eTcrJ^ae ziR`ihjY@}dNMW5GxbJ}h^^i(C)Z^+0IESi@>T>m->PYxz`~Kl$|Mfx2x5#(c$I5*m zDgyJU)CZC)knKZER2JDzc4LX@(m8A>7q`0!ZLDVkLy65B>S3?#4g3HDqP^8Sb%yU& zRFHi1!utBD7}Lkc+@3x=$YfKCJ@^7dnIN(#@a%%oC7WOz-(~K;dRO&)HjueL_*PJ> z{L_2;8g*Y7)#gEj{n#=m6$~;v`c{5O-^<7!zrX4g`tz)Y{)Jw443jd_Nd9$JjJP$k zn5Vgf;x$hdLv;w+jAh0%22OfmndUjGUEY9sMS<&8UscgxnNTsz3N5$b&GW{*O!9i2 zVN|Bz=>}GRjujFoddsW9{XrVc7;ZXC9b*$A*y(6M&pRjrOAu+_At^q zQCHW>+Zp?(wuVoM96rRG%TO#XL`$ZpMSL|)*|Qj*o*wf8+^SiFzDPHtu2SlsZJXKcd-x>Ku``X{PhGYSRJ@fWfbeRVZHTmJjEOS$B)3aMr z1#U_5<%buB%R)un+QDk0tE9H@sb9bDUInbOAXmsQYUz8SeA?SDJ4Q$x+4y{f#E^(W zx8Kww$i{gcB0gB8u2wgzjDQBnhB=J7<3mQS)!nY6Z&kox30z`O%}G%tm*FaNF_)_} z5FSS4D@)2b38l>VU`)HIQO$iGmjOHEgou|Uvb1QVhOqTm%*V(nGDdC^frLt=Do&c8 zTn#-8(QTolA$lq_7NRvF2vzgxXB1)A#(R2^hVP?qgWvl-^lkaVmuTmK#wMMsSqb-r zh6Xbhug7}k6o{rBm;zab5dE2`KkeTc-m_q}4Z6p$d3kQ$!aW@Kd3)#TH32XCW+w2> z-P%xfFpK-irAf|A<8ui562xB;)#BiEFC4>O&`1#(vl``mzixIG!p6d#g>++ZXOM0T z>87#_Y_SNcuwOVTFohcl#i56Lt%qv9e4H3wriUq`1!);^=3!E02JsL- zt`y|M>j4|oZCr?JZ2jPn3koB;-6A}2nk}ZwQv7DC3$D5VWo5SuTsGv73ZDZzIf{-o zQHO!0u9wTmv{>}6%bIU57Jb8`nn!pW>Y0fp|0s~sV?Ry5JhZ&~&G}F7?b^EarKR25 z${RNPsICldbglWxmbbrJUAcXI=8XgU2ls7Vv}VNu^iYnM;~m7S4)1+F{L>0h&6Q)4 zx!T;wT;?M!S_{n+YEk6RxV`2Nc&V=T=b0aMeA+>mm4mw+z94;DZE6`geAgy!BNiyp~CRUA0r#Nqz&IKVjy>w z39DnFnXsNnn`$DQpxtU>f8uE3WWtd>V0?Ffg1K3uqJdvrO=9-N70j?Ax`vOc>S4WF zXF17&WJQuC^;DWfv`8evqzLELCy*30x26`SXmtuwsW9Ww_n5-jAVx%*{ zx68;p7Wy!3g)Jr53|Bu&U(?Y$n^@NNT%26n!^bFWG2}n^bJCfWO)<3yCI>eNU+{+wgW$@9GLbFuXm?pxBHdAcO9?pGf*=V2mYyQgm9lgDE( zH$Hs3=kP%9(w0|_G}NYDtop5%Q1MK3rq4OpQC&$t|LNj@!{!dPEvpHnw38Kqe0S+{ ze_q?>_N*>hTo693|Krf1%Ei5z{G$52j5lD-i45PWT?8B64IBOep=drr4%^^$4FuxB{6vYpSdw`52!MJ5mlR zN0k9(ToI$@w!?aJb=_lBlFG_?jw>s>vg~F{DA(8wKbSfT?05OkxwFYYp^c}61m>>v5Q(5wu#s(*bztg_fBuprFs5npal8{ zjU$k@MSSpU!Y>gLzGA}k9(LHjO&R^)QyD7_luXPX!3)qzJT8rpqaTOr^~|!Lk33s^ zv}xT-P5rxytDfJwFrG;EY^efy?AU&3&Cbs^mT$q`(+BppbZuzdy`yEr+NL>2xd959 zgL1KZ1chME7C1f0Lm@ok$7Ajf-B84=5$hf6JwQp1=y&vcy1)<}q~nx&M45}3qpU88 zWIQ2H$wZbJ_U3XS3zVaJ_<{Yi*fysqCe)Mj3wcxjn5)h09AIX!9$)qITY>@r*_&ulN=M+wOBm|`Ny67|nRTrPl~`@(`kfNZ-}Y4Var^z=&F`Gwy8A~x=a#jXHN4RN zHQXauPcOCV0D7(uE{AjRZ~(tAeIgOjQ{~A<>Qd^ zu*)G=2h>4zT%AxwBl7y~DnPD2P-l7KeH3zT0*_)oef>Ki?=phGoG?Jz%6mk!bL1=) zHRQ&s_H$>~wi4ew^yk~#em1kqfPHZ_Z9Lz*3($^kTe6&^zv&Bry)MQ3B*(oSaF1h_ zej=tP%92jKv@&VcA;9;?4#!@LQPqv37H80zaMHR`p;jQWf-Q=VeWQps)9$X`(0@Z4OO4i$!IT@k4!M2=xg%xx0k zoN!J#snaRg!|#THh;Yy(A__#vb419xd{iEg2W8PFt6A+HcDr+9{=zV)A~zRFT(5@; z3nklkQXzkTD&X>elVJ}3B4g5d-G~(wR6{<2^ZX`w+;R?SU)7X(7~hk3q^@{DS$?23 z*kmh9_Vt$Rt+~DR>6W$~{&t)wg?L}#FAB+jgE$q$%p365 zdarnILd5;Geo?=oQ;I0IiVRd`*rF#H^VqK$v`92)P!ln2wlESi!$=syh^>sftBYUC zTnnz4mG3=QzL7=!6%am%$-`Xdlex`WxH2(R3hxQ}(|+!@e(tt*KQ2OkoPx(eKlU5Z zlSh!O<4)?|G~Id6FKUYjBTqbC3T0EY^f|xKDp0X6Ucw1 z=*5k@x=(+$sl0dX%p2RA*R(Z0Kl9JF2F_SFx`93w-hs)K(emHPh(i>U3~z0^hVNja z<0vK=tBRzHQL#cC6$R0_jjw?06QH2JzOy`Y3mei4vpPCGy0F5$Rf~Xw41&_Pf&5yoAe7x z1d8)56#tn1hQ3d~q=HII=mk1Lg=On0E}<#fOzFQUro5U)DOE+P5R0H9EMA2_mLV0U zW4(l!qFR%x1>54R5gd*A7UiUj6nBz1!Qoe{-+kOTq@NGb;1Llf#W0+ZNUv_Z+1g(8g#+NkMT zh^D|=x&kZdCYZFb^|2N$V%?;w8^YP|T-%tc{4p(m+=l~^&-Z-K_xJfq(yTCdPPVpX zuhTU=?%-e<=L-AFKog^M@rSsFLqD%#9-(@mE?o7(z}{Vz z?!n&H1F3G$s{MZgu_gy2>Qp9;-yYsvvmx_+a%tl?9$xg#j}6@*yG|Oq{VdC^G0^LA zvYU`{vVf3Id6WFC{Ji{%44dx^J7HjloWzBSm10tYg1E};c?Cq%W4Zcr za3PZUc{2gRJVuDkq#B;G-2;kB0TTm&i7AA`kj2XZ6@_dlb4>JceZsu+*pvhm9ltE% zh3CY};w^DT6po6g#B(AQjktl+luhEvdtuz*!hGuT&ci2Rfdg~Y{rQ48yu9n@9V@qV zefOtdUcDz)zqzk28m;T=tD8?-Z+AYhdBf;$)-C_~SAVfJxvKrK9Xpck9myPn3>)nI z!8npi*#AK#WU!rbV@oWQRzN@ zDXf`KaUL++y1H;A?~6#zDCFv%Xnjv_eRNM-=kW2)Hrl)`xw<{MeRRX-o{c#NT&2yq z^_Z@kZkp(M`VM`c(w8xIf_uTP_E&Q|=lmbn^MCmN{_DxxKA!V=ExFp(d3?CD4OZ3L zQy-sdNA#yREDaJ^$weg-no!&?^bT3MQ(_!sE~i;Sp|0Sb@l)>S+mLbyww65H_WN^zDzxC_Z z*?TJE8#XMMTN&T@M52ne{C$12Gc!#8($)LY>Ww{1*Q`(V^eyRJ+iG~_3LY{IBMlAd zMf-(kgcHIwL9h!!VV*#}f=vfDu~`(6bFQ5e3(%|4_|72NuJD#2>Jnq%o-^L!1i$Mc z2n*gzCKyiuM&`&2FXZR^GNX+7eSE<7=lTFvCIY^0wQ3f>86?* z-ezD!BDKcX<6kiD%sbf`CntN`hMs;XU=;^N-;RBARp8A{gR3I-6-)7JnQiIP?ytqx z;HS9qBtR8mJ$%2haYTTK6uT=i=D6S>q78p)!(Nv$miM`_?8c&7VLDOv**%aGy8x?IDE-{45F(K3V+ag&FsZkY}5Ux#XS`}otrPP`1 z!;A_{sOl;(p?XXuF%=^<2Je)q>V1eX4lKyIh;t#>VuJfN>x?`Q)*2HDE_dBwJmgFw zRNtk*d&m%9&*C4R&Me|!h@Z>M=U|9;fKmv$${|onLa*x$Oc(75!th_&KN&g1jRz^3oC)v}CI#>xKA2U43rr3LM>=0oR6C^_zgjM)+Oc3}RbR3mZ!YC#jypbe8 zaq#Q0Bz^{;z~fkGA&1Eb86$!q5zI{AL3khwNiZAGeu{TdoPv%6{^^Hy(XTahb#X~R z6Ia9cOiI2zh;Zi<+`u1BMj#fB;J6zQxz0@vW&Y8hxwY?EzsC_iDvaK#A(t{=YH5vi z;4x&Z{vr(vub~QT9!D6`dlk6E&i&$bVY459;K%;i_`PyWbL=k*At5SIr-|uJEs4GC z03(n>^;{%kWkrmfWWQo>vfE4`%*6;(St)fE@s&#zNLFNGmCKxbC=eiF8N|&5=WL?M#Xm8A*AHqTegJX0Ya17DZZ;b$DvT4D6TdX(R6z8lGv8kvcTdvN$xFH8>_1u z)#AO&*2mTzZ0hJ-)X=b~v!m(Yy4d>M1b)}_CX}!^`kme=g<&e35XOZ!1lsM`=^%gb z{LMowrT$W4F7uWVONGCJd{lw2)qGU*?;2`x``zS(d))noo4Vm}26ay?xHU*nFdU2p z_23IZ6AK1u1b*|P4bA&6_vIcFReFZ;@B7Ym=D?XV!!Q?tnZc3UfSzF(E(7X}RjA+s z3W%a2uDU3KS~Tjem%3Un5SDh=#_g)HZfjaKrhD;HEVe?^ESlD#{6W_=UTR{po5oPn zbaxx84t>8f!>(wzS=-n)oshXOggNtm&-*;Thx1Z2VPM?_Ch2^F;&6Celp_^n0m0gq z0i2L%;Jywn*AJm9Ako89%We|!SkU&>D*(WT|`0jKZlFbHmBf`Xong_KL{8 z7EgI@PD!DrbeJ^Va}mp-suFRINOYoIB=XhS8@?%g zTOcnA*e}cy>I6p1UYEd_cmc73DDdLr%g<}$;#f1s(S=V6Sp*KVtSCzUOty$69qe1| zNtR(XPY`+TA~>x;(KnPcm&J&s_9626ab|FYJIxXJH(R)mxxaEuHHSHs&X_7a5Qt4a z>J6Z1q<}%#f?yGqPkKZQ?xVWbP``b{1^`#L5&VLB#V6Y%pS^lzkorVq1SgQeN53Wo zDApKcV2bhSe0ONerbCm2i6_UGt~Aq$xn>1HUi^8aHUgG7q$^ zK?%LJKiw@0(=#BKQ!P}wPh;bPB|kX2xW1z1^{JWdzOrS_%3}wYxALAt3s-!td4B1F{cFqX=2x_>si>=)P3MlTFtuzia-eMVt5AmM zf)Rg8@BD@;V!`D z^RW2_gNe`NC}LW8UUJfrCA#Q}D6stR!Qyj}@mN6`Cpit0QzC&rX;dQBQj@e^>XTR` zDUw%WZcA9Ad_$vqSeqR+0|hQ3k3N8gGLq{BgVlx@MH|ptY=YM4z^r2i@%a>u z1%(AnZTFm)Uq1L!Q$_6_+iOL|Yl_mQpPA=*H94(9H3-c`K4w|Zu2~Zz5lnV${$A(m zO-zeAu)ea!iZ6Af+mFw$s|(gmu>~Worl#642j~L_kkH9cMvr(|BqyXEiJasva6|&~ zL!y9mEQfhkM=;Om1U-ycb4xBiO_I_}6U*!H}{Qbys{0TtKM%*2-(k)#%x*gqOmVjjlXx94z zqL*vo4cLjv>^}TkOcd(l_D^jFTY& z6+lMT_c9IuOlJ>>3nndTz6sSw(Jj-xtz%s}tka5|0?`fP84kl$_+mx{izmdC5o>Dr zt|wnKjGqd1-u7Sf%gam#R zs_6C}^^%6kxFHKSXKl_R-RVcuNlW@G>4bOv*hO?HohgS>PNlFqEAF%$vYfIo&EjT} z{0KJ5OE4lh4ne6R9?l2=bIzUZH`3ibmnid2bw*swi8A2P3DYrZ;&hJ(o+#}s8&5lS zp3kPEPqK&XlywYtT-;~BXD7$(@7nw9@CVqgYVjOnoPerm%oBS#Jfd-qDG(ePh&3S$ z?>04#-9XT3QQ*;ZO4Vw0r)PXYK;u(;jD4=nU-Z`DCEQDeZ!R~MIc;LAU@oruxS>43 zwQTmzi!Z7>rxZ~Dnq0W9xj?;hcx6k+)%+A9x|1s`4B6HC+3DJS)g>qA?OIpaIJc~A zQ~84GQteDym|C(}W1(MubryQem;YZ#2;*lXA@GGh@C6B-`gcgk`~(Tf zQ4Df~+)rZAHq?cP211+JeJuG`Pze7M6pFMw$wC;FMe4Z|=o*sIq)?p5=or{Q0H1i~ zXXGBBp!%r)W*Do=t#EkI7=X`6%}>=7Z3SZ%^0*U!JH}2+GR>}xr;hqRrZ3XSn#iP=J4b1mv6h?z(Ql3xm`pJYwSK5OfU(?+3wO0hXKm{lX+a zwxOAI2KDM1U-{Ift!h@7<~W^k7#%<+VsLE#%7-=__btD_3@n#r!Q_N~2_kMFH% zUAh!+?26O}gYU@J()_Zikw5&M^Qw<+;=IG}?|pq|-<|L5yR*-6J{&v#NSp-6Ioq)f zVK^hOz{bc31p-P+N{Iwpw_1g)jCMsDUxjU=>(WwnY;;gWU|K09gMpCH29cKGbb>6^ zXq|oh(JAXtx~?#33}^4zVX(6PvsbcpU$%bt{GQ+QJa6ynHNAz($J^%4MaCOIkZB`* zMO<4lj@@qfx*Pi4u-XmgifV_9Z2uGDtFgR3nY&-(EXv6TQD*;xa@#D*7h9LiqWm%E zNVTo2C-Ciz?tx$l<)xLl1oIP~@`Wb6CgQEJ8#n`Mof(EHxK7>NJ!~S>!r1f1XyFg2 zsfN81hSVyt7)*5xeK+#*jaCR24pdP~r0kIkUnF--i)jX&kES#6eXTH2m>Xco3&*W+k}7S4JC=eJYl)vD){GSeeRWl+7HZJ~pK(Ec zLx%6jhh)562H7cExW)^F`Y&q1(;2Tf8jT)~l4xB@?vQa<20;e1yfX-^f)EVWx-ZgK zpnpcc>xlVuDl*q#2xk#k8emwoAQro%8`1CXx_L zFg-DF`$+!=@uPv&Z}qIQMqYpH*>?|lKNs~c8`#{xHB_D!>o(0#M%1syf6x{F#q{cS z80uPk?bn5CJ3rfIFj8dRMYqg8q@r^4&CLAQUBfQC+x3zQZ*{>cSHBAfP4b5}u$_ZiqhLC3V>+#OoK_p7qCH#hdn2*t zXf~T|Q15rSSgM|!?XlBg>}E@ODcAdyvr(fp_>D>S7&F>g+@t2)q@XfE@y->CD| zskHLs@6MLILX2$7V_*(7N2KFS=#kES(TwoAA8wia-P; z@lfF5ZT|QCG*5VJLKd4;<#xDiyx@~;GQH3=HZqadixZ&d3?y=6`UuUBaypx}zn33T z(sYYN5D6gl92rZ%V1Hv3_XAC~wb!JWU|Ir6Vl5`?Ddm!al@I}pLXs_jX`BkwdFXE{D>T;PMw(sg)SlFK zXooeb-{+u_(yzBCHaT{0TJjUQblN^au^%@M@>!z;hC)%~>9SAei{zYbg3*WUf34zV znQN1u=*Xwfnig2*haLAjGxTY*cY9IYqQaXGw#W0(G!}lve2)tHb?Vt~X0{)3!k`0= zSYgl#hXr^+fSm&L3j+fFK7W+Q8~LsLE}pF7p`C{ypWv~^gPDihJp7r55q^TlXL&fr z!^=GE<^h$tY!=QW*<59k?KKs4s0UP>RiRT|ui`cp?5bCdszk+{#e}KzkLM_Q#Wks4 z)(!KgGd`Kq?`e3?Cy=8gE+WJ-wL!|-WKt{9mf{7e&7NRYsdzTh6>)SVec8Lx`uD%E{4~h#2z$4rqeKUL3{5 zjElX`_0ZySvDgH)S+$f7NlQ}En>bUGS{X0A)AD&!P<{p$hnfqg4GmvzdIz0h_fZ88 zKp^v*<4*Vofn#KZOpy19X^_Ak0$T`dAh41^hCrNvLTU&m1U@G4M*_bj*9jgbaD>1v zGDt9ecw_P5AW4u#g!~RqVeC}?DZ!Kk=cQ5UhD2VKPD*&61YeP!k?=YRmPybm!5j%H zB@iXJBf(!K$Vqt#Uy$G@5^R_DORq}ghV~Z?OB%9{U^s)pgORranJSKIFre+$UeXA? zYxg*5itvEhbIJl1e`zRk*~#9X{Mcpcx^kKtZc~2DK1olq*}P%I4>$0#UJ6VP-|A86 zs5wg#Zs>N&p_48{nn=91mWFQH=rhmtF7yTyG?i7`Wr46=3ENVAr@PToqdD1qtzQeL zQt^2;RX)!nk|;Q2C7{ofIts&DS&hTu(v5!qka3_s)=j;2NhUIEyJEvgky#5TD;DmQ zcuB;siSVSjLp&goJ`ti~M(h-cXfuJ?WDp_$09SK*iKy9G=LtQ?#y)3d`b#VpN+i@2 zr@&lki)J=dFEi+;hwIt+%uHd_6aqhc7`d2O;a>>N%%Ddhh~Hu^;ubPQ%hi}azXs3y z`1!a$yB5tbC5(c>;*taoL&b2q&}$TiahR0}Y~ueu52|a#X|{cT%-IJ$ZJFuiP*YPl zoZy;Gk7hJ8Bb&j<+g4`JW_!6xTic&<+E5#43zPCaugxY*7Li}zz3+cGX^dVe>NwFa7P$oDDc42o=3mAA9ik?Cc+%OVEZm`MiWMiLq z6&iXFE-Ru#UC(yu1eQF*Ed{Lbol^&55f`G z8P_|mYcA@dd{7k5kTKZ*Zb03AzOyyi6~TUG#f`cWxP`JX2_ven0X3#l@KZg$hV{7* zITG2&!-J81-J>`XQM&iZqoWGDKvM$qLLn@OT-eK2Y#hSz`QCa?5c%EKpEEt|Rd@m>XPOGn7&mY1!AxP4FCRs%2247EIu+pUAwzW{8{1-2DnTST)=C+EQY zlpxR`MsJWGBMI^3EmWXfRc`zyjT$qlM%ERnVHNsEUO9E{RzJPMJ#*_z+%tz^H9G`v z+D>axA*=?g%~>48hC_0POx!$G6t4jrTouKhf+vd((F(IFhH*r~d))ioB;v*~9naCRI^ZcB z&_sTKiUY*yoE?No!{q!aA8qttPc)fQZY04hFp8Z(LM~2NflhUPZjA!#!pyq*Anna? z-``o%`sU3qA3gT9>lczGyHX@WJehZAygFmqx{2`(t3Y6O!Qw)@__JVFt*Ngin+fp{ zbxIRNM?sM1J%x;)@gbi#=!vF*7quY@Ml_~b6p~mIMM2lYb^`|bV#(U*yVu)ZM(j`)J=2i3eAF=F#3h60^2JtiA=Y+61vGfSU3?GqBEuH;b1< zA_!P~&Nbm8@)Q--DeRE!5Dj_NAZ8KrfE9LtfCq?9D{BfvA+@5Og@nsTNaZ)(jAQp@ zyzR)?$cwwJ-yVOG%Hh@y>jP^g9vENVAZNnN`zrAMn4K>XQ*V-SHC;%_?d)(!kR4~p z1*C$$DDyhc`(24(Yo*7|J-gR>^~6c#uV2M4p7;TATwm3!eWz$kmvzG8g{d;pI|VHQ5bpPv<`Qx+tdvGs9(r!`oo4&&-MUrSqSzjl zkG%@kRM=_BkBsc=wa%^F?bi0}gse4|G?)0+cB@##aeQQOf;fKlXbZ`7CnHOnLVcc! z84r;*&p_GdI;;t>wF`4}A-52|#o4AV&>dt7i#voVvP0p5td@}qRIn+T&ZJQ^b2SBg zgz{lucxwUfJBs@-_X_T_I+0*4vew|S>_w==e5e%7Mzv@O+VMJa4wIjs7F2&*ai9*w z!37KEGN^oFCcw!+i8QMQ1XHdyx$^32)9o{=tF=XJQn8F;Sd0ymQPkL)Or6i9>Z7dd zWo_?@OkLe5j%KVhP^MhUyqn5^b-V@~LEQm`w>mBQig@^T#p!{&9`jC%MR=?>9ImaY zXvx96Vz)K9Wy{<7LF*rR;VU_;sChPATN|#Zu_kgjTWiNpJ(81K{`IdKNIYvZ@N?)6 zKjmmmjvG_9$tf!f6bIVMOC&br;7pD&!EqYgo+?H%7Uet-qv<+e!KUCBm(nRLlt7ZH`Hc6Z4 zt3GY$?4q%Yzvup}p|gv|E;2kkBxMbE9$k5K=FyQyX*k<6Lei6 z*}(nF3>%l+XXD_a7z49havDgl(R=j6I#u)z5c>6>>ih-}N1zi#wySW&BKI6nz;wp$ zcpkdr`P}SV!Z$JZJ&ag8i@i+gr{)<92W7=z#hmW-y4?w_=i!Y&K;;_4YgTUjMBO$k zL7)OHpc01_twTGkozPMmkF*VN!?kNqYnQc2jcUxO$6_`-Y{Srl4;eNteZa=SMDE|k zHki`m5CAqn$-gAi={7W06z2{gD3-jJng|S{53?ie$c~E3(I4PbCOBA%Q>D0+X^Ss1 zZ1k1cIOtY^sK1;lEiEWWe4@n6m?j1+SRZH)Tn=!n0~-Pzfyn?3utzs#4I3X@m&2y! z94=mBqbU^!jDYDWG6J_bNOs0zcT>RpX9UFT{IFiaZwU2y28#Ha354dDZqObo^J0_$ z!Ee7-bQpfqr5k>`--xlUA!hetI(7&|2%??0KZ_TVOt zJAA*rhwgN;bSLX^*26wo4{RhqB^%3F)_Iy>-Y`6Zp`(~_S_&p$lP1ulh0*|iK#CP& zn^(XFgNf79Cg6BXNWmQpB+s?xp5y zkuIb^NylPp8}Tjt%cs-r8bwc$s~bUXghqN4?22>i)jq zww569pHyfU{t(65JmBr^pGq0=f8VAEa`LbA9r`-fYk5S7s3fi_i$BVR*K?sG7pif^ z@v#GSIH1}AH*Ijj2JJS8*x;5KPMV?J3>9WLXoT6u1|vG8huQiDJ?dd#7V`vydJxp3 z6$q7`M@?9&P^d}aKE*^suBxKoC~6uZWI;x<0au6bS-_$_Q}o5fl|)Dgp^$`|XIQ>c z8|@(k)bu7kN#d#76Yaf78b${Qf-&JU%s_M~ z%U1CaQoa4=p5+yq*sr(t=1NYbUC4H9nR&Jr|%U3r$mp^{`nF^YrWWNX8l% z8&;Ci(+JUeiqi2M0v)S)u`%pSOK=&3l8F*+qS}SDHBCsutwgFlQ!gte5@}n6MKX8+ zo5V0cm@%DK7rd%2JfDIKa4|)FntB&iJ&@_QQ>W2V{6a6O>!>fO0Dk{H%Bmwg6!PHU z!N5a~9`r9vT&}Koz5j^n15U=~Ny$x=eYLf(O7ueL1XNIi~*R4Un)ns05N+@oW9B)qusWGhGFzd^2Ola6VBDr>3bRL^s z^DcIT9c*A46;MGJnWRjg@crwgPlEu&-Z!NV`O`XxQ@FMKHg7k>snMf*}`kIi`+no+dAaiI65 zwr{L$SiTdl&{=ra#xZwu@vPNCT-kIW_F8N-M&?(SS0g5Biw;IdqSRo;NComn!V$!k z!NIbjvU6o$l~K37hj6{$(91bI{6uv5j=R?4S zazaC)b0MlYSQ|vW1%m}61tjf*9^XmdTfX}~s>l=bAkrk~$v>Ab%9P<*7nodmF4XOW z!y+up+L_gzMLuGIuT-*Hr&wT}Vu2QwM$CdzYks*)ab)XQBf}NcWLO~M9-PdJk;0m2 z&72ythMQik!Ea-7AHlB+*mZuk(wApiWa=}KCbrn7u&pd2*nW15C0RCJ`yb&C{txJ5 z=)WdF5QH=X@V1p^z!d%!+G>`wZU2=3SN_=g{nO3EO~b$2{@st(ZTn^Gq37O# z+?I;bnt9z_OX_Oob|0D_OBKZz_Vi)`EZo0$UJNizBe`!{qXpX)o`ylYQO^5nBG?|%Bk@s`dV%~(fFrY3vnl?+W}5mrJXoRCzuh*I9P z$Q?UmncOC1BUz=OBq9j8p2$@vbYw$;&>(aOj+5qjTp1+`lqEEe4-%fk zePn{O5Cq3EA|vZqi%!QnETRn=?K)ssPM<{)Iy{Po0LEG1JQ0Ip6e9-0ZKC6JBTbqa zC(Q(O3KrC#V`t%s=vPKF%?|1P|j z<2`#!y9IoO!|}0+#I3}bm_D|G;E;p`6XoTY0K&~H!KpSTQdH}p-I-%~>PY)K7{}@H zaiKkP8?`{EqY0M`o$x2aDNHhrT|tkR^nmvtY?pa(Q`Z&7@45HsE!w50o7(-}jL)y|nOk2XF!NcM} z2MDwjhPF6=&_ZddZZl1X1dE>cY?#ip*3(-wvOV{n-#Op+rGk)<4Yt z(=EC7qx>8BgToJ;3KX`ON2?KrKwWNS4Jx9 zDw)|;;Nu0SAP1@>(c!>5wd_0aRuml)&&e*EQspZO6aDdqu4_a9 z2rSQN_0MLf#)+ya-Kt^80HPtC!Ib8hHb1%%_`}dYD zM=ru|-)(#R+4F0DP}Mr)&a8)F1O4mF$L0?X48HrV<^)pX$ggHObP9e_3ccyhe(M!0 zy=jHEQfP^Q7*ay?g%JEJ1nr>>AzE1sCyJrX2c2F>x#3MbT<{GF67^8JkAj<)(iCOa z%)q{GhToZCiv=tebd2{oDg7@_3MM&`T^@XIp`ln zljgTQ=Xuey$HP1xF6grfMJNxYzCZ!z39A+7O!ZC}aGr6}w=l3ey-xZmQsD_H{*W51 zs6fhBi_jrn7H^23h}<6Wm`KHN=tI*-Cfax(ifnES>th{Xo92PXxfrpk=0<(-ree-&SuDc7FbY57HpH+A}82A7UC)kesqv5 z=Ud-9@|9)37#bH`eK*$+%&32R=;V&@+pc8(_{;@2!WUiM{P{Zg@<`{?W%*Y4C$GE+ z60F;tHo~_2?3VWnRwgHK_DD3q<)1pRN=-R>l#L3kzlqeRt$MxDf}dFgqo3(O#35du z)*Be(jYS~x6jfARK8{g{j*emG(;{F^ED*2-lPICKfHPnVa20pfZr^?!Ue2$jzoNUg z&|MSlTk>{fEq3=6?kG+uE0M{G^aDndfD*!+4OUDMyxC?F^h6d+c1CgDn?=FINjl!l zNhaRRtGu)dCKL{n*@V%96Nz14WHnG;(3{MJ+5H@m{8CIxO9v&LAW66`KUqLlk~hdf zaskx^6;Z!KKdQf==NgC}()tB@syipS5I@83p2^ai$;ucfr z$^&!e9LSHWyFWj_kR3wD)W{MMjBrR4{0b-=ZBS+d*%nN+ zSHSu*NR>60(TXy?Pe^FfR222TWWo^i`HKS(@Ck&*8la(JnvYtL_;@s9uWvk?iRT&< zlMgEC2=n9x1JPI<$7m)VO<;@Q=T?kL^_feWd}b!&(Y*u+D(0wpDa{roYgI3;`RQ6@ z-tSg{50+>HPkT8heYa+!*q+s0!(BtO2iG0ixnkC$Wa#DZB{s*(Hg@a>epQw2py$II zOTB$RD|j|uxvlqr%d@36)i^zWx$nEb>1^HpYN)DhW>5*2J8I@VG`W=G~3>`dhyo09_@8PM(Ba{oYUU*G7 zBQVj}X{0{R=rB^f?3JmXcfhm`M~{Q{J3nw!aAvJitG9}BJHnKA2F{5)x#7|mqW3572A)H$3!+3v>N6v0R? zP99au)ET77nR;aLOZbM#kb@RBn8bTT+X)z1-IHawy}GLm<>`(CNb&u3qn zSoB0wRc6!ln6}}SC5w0VzQjcSrQSQ&YfHLz;qHydRDmGnFzBWhzC^rK8bxVkWxZfv){+b9xk7tgSU{^pC|MO%nM0#;x!~TfF z6NtxxpV#qK9#cFJj1jmy3!T}qyC=|#KbkHiqPMtqrPL)+B7rn&k&9(2Gnu4irB?MQ zBSj_J^{3T|S~6;mde5oZL{UwN_iQGMtyJmeCmjN=tS+VYkvmeF;Dx%>vDvdD4>kp= zs|p`^)H^p_u(ZMeU!cZ@c{dd?@OVwt{FX?~V#Q)x^dGXzJ-DeVkK^Ze&OP_$rg_}< z=B8x|n@&N-9JJ#)|R_dCDu_Y?BH7)dq< z{Dd&`l-URknN!#q!$^z=(=K-@kbIadb6ZJSm0Ni2dvL+sinA!bh1Dz2p}=OPL+Mlo z6?E*HLKUVs3re=6b*EEEcBSgB>O>{w?!sd4mR3Zz^MqO2ONz_3bl5xXgLZbyjJ$BxJK?4fbI1Q#?K@q}(HF^nbC>uMv`o z7=}qlzl0@#2=@IN8dl6)SX;Yj#){`3T3jQ!Y95-sd`8`b@+niwC)An$99!L)`TX?h zFV3F6>Jjd$UNvh%{r%gKf-vC+~N8J$aH!!R1tiZK!Zt z+EU1D;|kNdB5TNVpUdCKR1TwQBM!|Gaxgn{xKuSKKRRmCiz2Zq4TBmBC^;oA=U^^$ z*FVzNubo{pYTVI~ka|2EDphl~-wlZygC&#o-Fn=kQ&zgV^XZ2SKG?Q{X1`@!zvt`~l0EW1ze!vNr@?csX zJe~(R;dq!%4&Mz^Z!i{I7G&OnSi!Oa7BI?&e zp{y`jq%;alEn~z4m@msGhuA1CN%;y5XAw!uw}@%=zyOs6D4BJg79?GP33aEQHb1w( z=Tg0dp_n5p2k^(baS1khFlve5tJgUKUv!%_4e$5IL1@|JDy}{$2jx_*tnA zlJ3#zG`(M^W!gk-gT^*Gpe$!%4sB3jk-SQ#$0?NhAQ(FwfIz_GijiVlO!34LM!oTr z!HiJM9ViNH4s--Q3=9V3qQIQMDO}tP@IatPpv!wkmqDi++YI^(<<|!)U{`w5Jdc^2Z^cEHZI2J_8I45PXA zc*}s$_xG`D%tww;Nl98KIXuK@NNKin2&$9@6`S?q3D9njTpP0bQ5bn4g8yM@{)nsX z(7Wsyci!DMauR-ty8zj0UZgkBhp8l<_ThddjFu23go-m8H;p5W#1R+9Hf{dDUFi+8 zaoyW*(`VSu5oXpyIqn6S2hGK#H**CEWP1;BW^Nq~gsXCd&S|)CLlI!}Es|-O><|^5 zj}`4mQ_j=4;9PRsh`2uPZWc|u(yIw9A*)F%UhY;t`V|GynOm_bx2ioXN^FTC|J9Z? z{t;^&B3R{#KD-H8g&ROUBcd@I0;F4_G| z#lC$NLW3mfz04v0FmVu1FHz8s5X+UY1a6MWXGyQ&qFG@)P^{0DtF9=kO_h;IWmB}m{8yy1GSVd8 zg6zTvc1e}UaZ}S#9ztExhrymRY_~gyZHisjbBgSM&NLK)!_Wr|dgxz>2lF(PN;IcZ z32fQ8!sKDf;)svv|1IiOEZb&a`gWNlZ`_rv}aG^2wXnA0!U&V6y8_o?7>iOqM_>|xoc}UkuCZ}kRRF$^nejes z&+NqBnSI!^FUOBfJob8b$KJ5syN)+C>pC^i5>VyZpePa)$#$wpzz^&aMG95GZUsf* zAt$tHK_FSN6XXQYTBU_RWs)C=wm%{wfkGk?YKgQ`D>cixvuno@{XrW?;>YgXyL-=f z?>TeMx#vJr5(lN3h_2CfO6aUekh$i+I<|^^P=!Mxg-*8mfW2#?tv#Cc!tvhY2S!H3 z-(0_b;slSXaoG9g&7H;T;=3ZH;;MjC0v3b@Atq4aEs0({a-srTWg|L&&#mwf#bcx8z)X&hkd_M{wX?&7U7Mx{2IdY794<*e=RwgllK%g zuB3Cr<11Z@)v#GOdykG-R&h9OjdWPU!Eph% z!|qaRDj{Lr4UC2wFHKgW!b-pQ$wX03eMX{gk79TljC3rt_lfk2NQR7&403WE*z6o)#Nn_n z9LQh1Y@TpTIRuYGn5~COYG19ef@8-_=#$p`%Gwi<5p?Cxeu%59aCc1qE?%`v53jF2 zs7}}TU)^1Y;}il-gu=H5?4!Zh7aNIUGx^0EyT0%m48@y;wnDUbcjv)$n|T<-Iu)JIuae!g5J6Z9om*>Gk0Us&pprWbS3=)3i#^mLqo=hr#`+M%G^1*)!L#-plm>0%x7CW z)H>Qq^Q~bpI?Q)+*iN3SfVI;m@RN^KEw^1HxX(}G+naC8E1JM*V=BnGHIEN*fR_Wj zRe*OBur2ZxO+*Q7`MrBJ5e16OkU477yxHyzd&73_G9xn)f+9*J6k(C6$f<~=L~sPsz}Pg0 zY!d@CII|@NfKh(6%4qP^H6UQ9Gb%xSJ+?LZJ{rAzPtIW5yt+fn~!ma>lqZZ-@p{)TF_7b|ek%ieuAd%r z6Fzffv%JCj7&@!%d#Qo2}scaH!B#AYFxAdk;qp zh6ZzkZJcL%ljcT%VnM6~L&02d zJh%`n1*IU+rfuBx1L0LHM2~D*$iy$=T`0#oAh`HT{~KwH z(u?U*`f^&BORuL%nqv>AHo$kSN58abJrmbMln==>Pg;1D(K|$_?EI1WB6_k`94&IaH?wf%y zDwg-rn{)~pynCVLYs*eg60W{$tOW*IveuLA^$+=p=x_8BCq3}%o$p9GKrfVL0PYrlgB|wb@+U`?p>kuTo8qwjuq@b zX7(tnSD>Zq^O+uKW8)ZFxIX(^H&M<%@`3N~dhV8ow|nO5)m7;2pm*WzOFSNLiApul zt+uvW-kt=sdErzzZKYF5m^VVF*F$eU^w@Wf6pt*;d0uBvKeMOj&N2Mjj@r*Z-*+Y$ zocQ|ZhW4i0+CClKRrJbFJwE@^k588Vo$Uw9R;@z3wH=6Cy1)Dt={fNdSo*AO=>)wY zegbtaLsbnP^LwU!YPgMi48;DZIXW@AFuFKe8kI)voK`JoQrpL|vsupOELS*q9yr!H zF1Zg}a;eUfTq*yPY5Q29$}5;WOvc>LR(WoVI`zkLLea?T6jR}1GKwOWhFLg+HJBGD3Rcyh)PX)-~krW6;vzO zjclL@m0e=~b7t&1>52z-SBrSC&y3~&JOBUv_gz>D)$fjlbq4f1d;?mK25@hzYWsU5 zfCgiD4M!wN7qYqRLbjIO%-Y0kDO-V;YW8w=DZ8F^X4}}OI(fd+<~fH#c8sdm!9`Pq zXfb?PkI;^=Idy-kF=bzC-olepgmm~zxpw>oy<8hVqL;BT3SS|3C6z5)EwSKSUR}Xpy+6I$j&U3=Xo5o7e2>j;3Gi>9${TXxerK9atq-#OLEsx_*Pj z_z-vpeksKkz%$exyS5tYkK1j3EHqL(*WDl4-)k{wIIV) z?W0J;E(T@9OeAw51BKzA*q_O`-DSqCdy9~AxNu0%QaW3k7$7;$Q>5%(q-k+FGJRp% zM4FzCMgeK2G*g*boZ)8((o83k8O;<)Gm+37AWf_?_d|>rVnW1}a7+)GGoYZ4ghE~~ zK*DNQfklrG6UeXyNg7DImxd^6t^@TD=y$)!h{Z^eEn2|EHgK_+Oaky|X|yuBILeO_ z;L%RtHiP$C4BF3dr|pkW9><|p6)_B<8^z6Hz1S%7!D7+jpcSxCDb!%$;0x^UQmND`>lMDT7tLbwUW-Zl8I%Gv1^0niJ;k6@ z%H^UEN=2zD>k6-Q7UjpR-D|OCA(;AcGJuk5c^JXI6`|*fy8UUir2#4c-^_=I8PC>9SGWMWb~PZYWEfFot@>&1gAo9 zDi%(qjnlSl=MvP+t#*`Y=#926CsIQPNaPL-jMix)9=?@lmgC9l1Fx`o9W+7gUvnU>yOq>LpI$j&<4xNb&1n7I@&(Sc=C%o<#{U!6t}&qFoL@s5Cmd z^AvCJ=Rx`b&EM0^!JXfu=OIc}x<81}m>#XF2@emknj}#=Z0O{~X@^@El9!X4Ne(5& zWG&f9@<|3cu}9Pe=aO^XdDqF`b#6K9PR?nKzjO((_6_uL-%ch2=AkVBx4&gh2CaDn z^-6u@MidYOY=BG#fhXpX|4tGeZGMqA>WXP5_IG)7 zl&peX+yWd|lFMMAZLRrdTuLUKkd7#}9AhJ~T4ZFd_v0K*TpbjD8oHd`Tl$rl&%}D;Uien$lF#Ao-n(uJ$0qc46b#w#t z>Y)phKd47~7J69JBVow4ZW2I&=OBRI#be#wPG|X|^LwrhC&#f-d}LOS;wdAFv*Ylf z?1wM+fL@87jj~J8_2^c#9&JW#QN~M~^WL-GEpOe+ z3tr7z@m9V361=hA$D5XF1|3}sPLaSP_0jnMw8@Mh+k;j%+X_&LQfTTLn<5nvF2Jd| z6ja2waV(W!p(ZJK%n%e!!OEh-3(A60RW8Gnv8B`%hte+G>PL)Ce8D`lf5FOTz;50_ zub^kHu|8696iuh+K!~0za2L5I>yyYeGF%gu7v**NuFMOvCO2hHki&9Go|mu4%kqZ2 zCD-LH*`$w-g&)tIh(R;R%Xi!JNJGDT9Wl+ubwScIYjBdCZ>@O;``|%Nc_cmEzkgsr z3Ju1SE@h3auS6s9pK@;GMlP-kNo*av`1F3H^zHKxM%UPPu`3b@g$9#KJU+O_i8mDm z_4f<@HO_NgMZ<3R$BGNPz>wFv+`7vp+~PdQ&LqC6ZI5Uw(;pO1Y>S&4+tQdO<+bg+ z)-wiYzE67~^^A>?4+?7ArLj^z5C4(ir!j5gcN@bwY8fNi?6HWX7YoH+yTk7HMMsJS zLsybY)W|D}Ud#sqy*`H$=*|0Mf!+Y$z0)}T%FeS-hmFXm24v=`A6@)m*fY4({JWAZ zN{*8!`o@_4PfP}cAoJ4BuRj@LazFUl(RumO=MI-2jpL`Ed+XHCXCDN=b>>J|nSZv& z{p#%Zzp+W`XN%o{=kt)!4E69;c<)EweI4~T8(7>osQ2*!hlA^KO1^&1PnhlYNIwB) zIkt`%_HFF#3m`x5;GDK#5c#_)w;oSdm(%B$BqwmY;`ejpK>L_A!l1ah{RCw}O=}ZZ z+BRA1qz$P|)QEC1N)NE+>ji@B4uudTGgo(dm~S8d$2$={7!=AQdC{F4I5t^f60fp} z**E)+zBuL{AN2V~&g~OdXaDsVE0(WP%U?i*iP`2f_b1zJi0vQK*dAu?+YX|A*T~@e z3+ztB`u@#&*~d0@onic(bHDr*-|Oqo#CH63?R+@IB(~!iNPGirAPIr}v5s}rWSzRT zzzPjpr?wOt4FZ97r7ZxVB-4AWzN8x2G0;2Yg606g#M`-+u9Nd`npT;(y7LI0m$L1be0 z#4XmxokL-iL>Er;672N60~1%(8l5X4NpRp?MllhjhxlBRm{?7oC1kbotU{iw*i=D| z)|{y!>6(@rQv7Suhf0x|3?L)vQx$hi&d5ZTLv~aZsPu${xqPjMHR=ozC5NyGHkR@X zz(Bp5uXY5&cAc5t$wi|&=>GgVf^?E@F7$l5*s5%2_Qsf$8_(tQ*T;@UUxKo-DX zLP6>_PWnY1>sz;Z^!>HR?51U;8z<{KthRo)rNQ(={sWhL!^ul`2IjTy-My?S@zAS# z+Eo&|{Z@Z(H+xy=cr^0>n?0gmaZ|XutMJFWKUv$ebzSe^Loe=F50p_eQ2r1om!oPdds1(tZl#!Q@x5`fJ+?1KNVQx|c0~6_uSIW1KaX;PHV-L5>x<7@UT=QH~S2I~>t*^J{rPQkI)Q1{BRl^cW(o>`? zl9V*5{)=q*%VK@Ve_*v9`*wcI+Q-xLN7iil)tXYvlx_~+DXXc$RQUV+r3d!4q%-Y% zUT-lYOwJd(_g+n;I^TF4!VxrRN9(|izakua1>weU;=BEeOZ|_=7oqrId z>*6kdK*Y&-s<1H})kS!x zL62e<;QLESm1xsuYG_JG4xKSv=7gN3DyR?xdd8zDv{|UAO3<@f>Dl61N2YgYtHhlky=RtApJQ!|RAug^N~+EVT}y@qn-8{c}V@CHtsdXz)PKL6TOI;xQq~gjctSqs6$QYbG33u8u!e>L&_C}u!>Dl6vk-Q%m0Yu zRJ<{1cgiKMMplm^$#NM8^{b8LT}g^caSiIRUT>=lGzW-xL7;}6JI@pH32vS*vKhRM z*09^=q60;zYQs4jw#6&?aCmZk$6$TqVQzvW93OB5A_2x2h=XYMZFd1(EmPZncNSsj5MB;d?SBOSZO`#@=L$dmg;I6mqm^ZgLf*pfRxVom z{HMM3U&k~h-b08T0QG#R3f(@7qL6M&td7Lu=!)p$(S6ZlQO;3>e^9ioXm1e{b|qa8 zy3V^UyZ++hkqZmDQv5{eGo?MH%#IM=5!xU6S%@*|EnaqyweK&*!BpU{5*FZ#)N@QFF4)mP?Z=JsBaL)SNm|7L18%10s}tNh0Vz?I01C zoH8VVwxa{d-u_ibPdw0HTijju=HaLRbn)SG$&e^6Omrk$Hhi^J|FyS|lZ_YJ3I}kr zZb_S=V8`dG+b^`@kM^C|RNr2+c~|xFci#K$Jbz2m5&hy;p#ExMH5&lx5mbkDkj=2G zE27z)hSVsToy`fF&1up?NLp!8NJC|NC1HG(u}YGw!eWiDCRW23c{?>K59IRz(gU>; z)nzuT9)H4YmRTPkh(b#9agWLxwOy;IHzkmaEsSg~Q;>?LpXJa+$esE?jJKEo{%NBn z?31;cvrA6w9F;MW{dBJ@$#Z2!Cu;$IB}+?&R!}}K4RuZ#70OUgf_wlAqj8?06$kec zO^U*_X=Sq=Gjd(ha{UYEvWJp0or@~uw>thK*aJ78+IW0Tv80)p&C~BJnl>@#k?-el z>H6frg0|Opf2C)tn)HV}8=(96x+3S&Bm^v6!>sGV`_)}4n7pLOj!_+-y3Pxl>O z)BWOlniEH$M20}8Fv^`pW)LU@5#gpe5#j2%W^RaMS=PoXEW@CX6!M1{Bj=z}c##RD zFp$18YOyF<{oKIB$ETo44Z>M1feS7Op&R<^C+bI2;xKcV|YglaTT5lY*`*z7r~@E@Jiqp0U`#J0G??_w;Jy^VzE(a+}B8~ zOk*Z93gxvK0)ECTJCzpYw+cC?AeSQVln=;n%S4tVas1jSriITAr+CoZ1FUM!(WNA$(UK%nPn$0(AjoLI< zy3wR51~2|(D6EAwNH*b;FeRu07MdW@kLM=^0hqb-Xm1-gc*#&roQN~{AuUBowIvf z$6uNs;zFekcNy-`PsiDZf5#onLCBt$ihZG!)kPm}wn~dF-D&Hw;aIT&IAJg(0Jkje z^{N)Hm9JD|;ZQJOsyHEx2_FeWsMX0h6Q{$KVZ{(?JLNK%CE0~ENt3!Yc0l6+yPxnwMtL=6P^XLP9z;GtO$LSdM5i~<= z6+6XIk=_zO^?|1XO9Dhz)PNMQLc|bZ4P$W{#-c)ejBFKj*v|NB*(MgV=Kyd9P@L)M z6_6kVS4)VIBq=NrN~)8dmj)!7C6Z|OYNe(?5W8Z@^eucJ{~Hq=^dc@GO4y^bz=>su zBV|%3!s_k7teK7YA5R;rTQycq0LwKyD6C?P!!Rp1#&k%F6LROq4d7vNN+$C9jM(0X zDVca*=O?$(2&EH+EDTb{h@yjxEjIW;Su3UC&v4@hWA z0a?hN0doC6i&0bkqmq^EN7SayLL2EWT+28O6|CFytKPnK=>C4R!Dv=K6fy1JQaB`Z z+zVd*z6Fl!ONB*r0(37(rKktm@oeI`1fG#-P2ig~sIms#jG}K=tgpbG9SesE%ruvqcr67%AiY97ES3dQ%qO4x?){_{Z9ehI_DyGJ z&HwqK1&wps54^lk+x)X_yXQ8)K0sc*-1YLjSqqn)^ehS|FVw%g`>g{Hj`jR-d(Yc% ztnc5x7N(;c-Nr}hV-!z4ebRzPiC5#b=c&8!=**az*53K_iX(14Nsqz9jw5*9i7}7ucGfd71_vr=4}f2$;GV)q`wGK-eP~f1x{VqO@8J&% zH&7J*M{8j*T@AD81BE-U{b(6pi*bZQH$AA++vCO0sNYfXITgwbS{&*Q;g%3uRJE!K zH&>x-?70|jjiGX{M-lo3d{MY2U`-!HT5`lnO;Il`+NI^fI`EcuE3)2oec{3`m!no{ zg7ZKmiE4LrIk3ZF_J^q2NJud^ncK|7Tno|QjxJqUy&LH3)m$=X*X?JrFJyD6@yQye zJB#tsDK!)=J?SA0`q&id`wB9v2loE;)1mDHdq1AD;NZk3B=EO+3rCuloSnP$(CZ!Z z+m;_VxTIyymE8wl8~Vd<_Pt?F&7J$i_x8VdydhLEefz4-zuwigvA1hz;MrWR3m6PN z{D8T@d`zX$T5XQ3I;zvM4Q{U`5u0=-@!2HGC$1+jotT!u2W7O443R^GY$IrhoFlkK zC~>;tu2^M-$6Z|wyHQf9ZFg5sb630E9%o5~U|}m`mTEW4)83jo7V%uXx{7j(-f4Wq z9}AWT6cdZMb#c@h?~ISei4gb3u_ew^u_zZ7DytM8DSR#8&kyso$hYw;`Cgv3@eULg zp-5txnjUrpD@r0^$`3Z=*HoW-^x@~HEmGR;^G*7ZZ_1B+;72}0`D{Mbr}=2sH|0n6 zl#LHaAOuy1SCT$76{sHI-@2DjyRcevNQq!HFu>Dw*>I2*S#XoF{0bv3!$)J26CO04 z6)yD7hLPUhkqzj-%vbqy6W1Nz_jYw#-d(Mw-PO4(Y2`yUJ|qn0(#C;M6U31~OhY|3 zq#3Y0A&4+EB_Tj@YzJteEjUL*Fzu9PXgYNVHvy84-Kk4yr>>cnBMof~X(?nf9{434 z8f>}Ww=&?k|3GI}`=tFrv+wgh-_LP9=R?=q(XVn3|9`#{O$BqUOa`1sgw9Y(4e1Lk zoP$rAB?p`2$*ou~fIvn+O5@AI4FT5)4FX=^Tjs-(uf&Ic7eHbZS))?4BuYCxPK9hr z1A_>2VLeQ{=x{hzXy*KWm&FqEn;f=6NsUrS_aH<_tbmOVAcW$a61HlEju9K8Y>Ew2 zHqKUMqpdc>TK+UJ{@a>C?rfIO8q8%VJz7J0N)5R{gJA!O1bB;4RkC>@f;d3MQ3P8i zi;4jP)HFr#hzWJlTr4KlGpRwDM}^_dFZ?Xi*V>wIzQy)*Zmi&;^h?jJS;*np7gb-H&vP-=$v!4EO#p_j%JZ9bav2dwg&Ep>wj_PR9+^?C+8=b@Oy3Y~&a z-TWW-WP8Qk`MWs&7z2VQpZU)&9g`) zOfrF(8`=$K%`9qb-F)H2r#Dp=XEJ^0vy*MPPjc>A`i_PjUJ+fd`0$%MYv;DDIh-^I zM?NQF$vuy?tXepaAY})nb^}s=N<)+$+7vU&3 z^b@bWwR#b{ekJ!Y3SVhI(Ye39`J=xzweRmd(f;Q8wrwp0`3^{&A=4QuNX?+$(<_P; zm~|f+`0^?k_&I?k0X#pP4r6+2S$i3Fl=u?you2A`U^sxPr{AP|8_67zncz;9tC zO7lkieoLu4?iU=Q-NtEH$GQ?t;!t#eLM#YimAlxhjfjX66%jfbCsv8HReX>iAtDat z^W*rSG2u1FCuM~Bc)Yrb0xZdpHyaa zX^(yN`VZQE(zoRof4OyP&XVr$FMBAt`n!kII*$D7JD>h$+1G{F3ztPQi%XBZY&tXk z`GMS@$9~k-)xPOS|LT3OJPY_e0{GPfeqpMHx_p|NF>y|x2f%ezzgB&-n(nCRuE3q8 zua;t5;wr)PKJ5qE740+au4XdJ9vOGI5q7)W0H)2aGi-` z334pdJtHxJi+(%~ZgZAEWQ3yBBrb7e$?w%o!c1Zs^$d?8i8oP$cll=5G^)Yj;jc|W zW9`wS!koV@HU0XCy(IeN`u*eR;sXfiH}+@Sl1Ip7*5_85y1|jFC><4?rfMh7>)pVt zw^JxF@8Nm)?F6a|Gz4%Xzk$aUW^=ixJXTI8%4hn^EH*#G2&^?FrAkutY~?Eowkuwx zOrcZCe1Evo&xY+}>U431*dq3by`n|*`vtbTT+u4c2UwJ1M_5d;h+;WbVQB};#++J; z0=_G743H3ds9uU;X{uh*;9m%;A%9s?tc%9!>zjFGg^9~+L1#3o`)D28G{z4&A$ zyjKmmOGFW~kTJ>RXSaaA4+0@ahni9sM!7sIi9(JV3{Bl@7jbPG;7}V?;NvWDQW=Z$ zr6W&Huq$;sIZfSDj^hrldM4L@deiP{)$wxce(06xo$+_-mv=*ZgeLiVdclGRM|FMu z)%26S4=Us}wEQ5n%dt`9?8)qWY2y*7lsh+)yw?R9fj}dCXyz|vsYp$-Fy$v*YEmQ$ z+5vntp2kG>y_bj*&^y&G7{xt`5Q7_ zDE9B4TtYTUmg*#0l988{M42=5l-a2f4qz(a;kDZW%%vh+ z73g6B36)vWcDain2$W#Zl(S6aj_vI0Lnl7XWl&>win8F)_S{<2nXwO0Z*JT8 z1cfHXax2jxI1_==br(muSUZ80Y|W*yI!h?cLc%5!fN!&iW!*)Di?E%%FB#f73er$r zHU0GrJv=n!wVL{xro4;k%oo=PD>`#4%`Y4CeOzzs63{DtbhhGB1!gLWD*nrM*~d0< zpK<(t_dCDDruMx#cec+jiSO*#acn1coDlMIq$5gzw9pk6Uec_H0fH59I|{U-qbo0I z*|fCdr5!@hlod8_=;Cpw7lN$LLS$-D2I8L|XIK@O^sG3JYu#YLtL0Gs2|=G|o?JXXOqCEAO(PQUlo z9N+2JH~slPozMLdbq|zR>Bx%6gCSq>Lg5g7>c)}YmkS>;;RC;Z_ub;*!uz1uKA59! zP)wtqIY$LxQ7+$WOck88 zimInR(6bWBVwHr-eB@8kK(oO70NtkbYBVN0kRFX7XFL#3#TgJ|7jLzt8HN#Y^luj95PU09f3Ev~FKp$OoLu3uQ zY0AyIQ*I1UJp*dvGc9z7)@BHzl*tTQgC}K3F))+KK*n#PwrL$9pWTOTRV_-iOx1;p zAf}Z_Qc@OmZQV#ckkN- zE^rfwVjOf1P(RXxVN=%BWg0gz3?nisgE8e}eL)|#n*>F7I8C7EJ9ajs5MArw#-w0S z(_^-}Z6l?%NK;j;tW_vhZPJZylw`Z+#%{u0h4W;*#tHo!J=O5FG9b)AKg!Ku#Wx^@ z(OUF)duQhhG5_*15ta|H*|~yYPDJ($JXPFO1`f5!I*N<&+i=1bWYycYdC|5k zGBvxJmo$IS%skzIw%4Hx(GR2at|+o;9*wS8uC7;U>D7%#d$}bdL3GLLSELE62%0cCfg1eP<$~F*%b;dWve;CI$9EVnmSOn5k&G4@j zSr)7?B8&=51r}TiYtJevcU-M?t1U32Ev+dvq=$6ah#>)-ILOod9Ebz?@fl6 zasZf=5vitSB=`JmSQ$AsKm7FeU%p3~h>3hS_46-Hs7KB+QB_R!1 zx?K3}GVM3~q`0;1RN(W0&TluW`;Ry5Ox0{(a}t>!uj5AC7e8L%*?q?QTtn^G)4rq$ zEm5whb$x9iS&NGG56$fz>YKm2ZJqp^7Z<2DwceKKX>%LS-gZtyeFq#?>)at0Zll@?onF z=60+wI@WK9`6mOvdh^8V^T|BnED#GE?jF3Vy1N-UwyHszY1AtEt1>-`pU2yVXWpR5 z!j&cZMWbcVbn4V2Ik@c&ZD1x)D}Tfm)t24*G4!bi`t&*zraXwz_w%ev&U91Af+W<0 za5Imti)gJ2t#hMp4`L-m$aP4!g(&|Y)`T|jslk7T}vr$t^u9+MEE&{}FQb%;7aU7$=sutFFEFoqq+PRPa+n&qIc zd@ety$Syzc6?m@*@Z)!BqEi$_CroLVf2n_sAHV6p?57X-QHo?K#mgz22A}15?|`yN zISMu)^T$La`UEy5qaf^8T9)Ar!zo_TW%k!PdCs7j5^Us&KmdpcyfU3mU+EubC;IoY zwR?ArfvA_SfRwqySm}WiULY5d7u}B~2*FQUB3d;OLc}-kBE-*%|Nbl5RebFqZ^VM3 z#5*4rUq)&QKLLh zULs>omSm0PM3&{qk-jG(ljM>#2~$!^+AQsq7z>s-SR*d8>|y2FhK!v>pRzYun)N77 zo6Jcp2rGGgBE<&bp#r8i&i;LzU^H>M!kFQ6?0K-Y!ubhY?)b zp=Y?4INB=60&O|zL)+9rmF|k7rO`Ff|3$GmS{V&TFGrb*PwYr`)Hs?Q_?#0-?UDAT zcAQmc=f!F?P>rf13tCpR&@D>0+$Ud`zmS=q%2!EaMBLq|+t#JbvZt&zzY?)jYnwwm zLqj1P>QtR

  1. tIYfaf~@@y?ZSu~xhM>braNRY9d?FVz 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 M?%k?-YV2(P4-@B;KL7v# diff --git a/examples/insurance-claims-agent/insurance_claims/config.py b/examples/insurance-claims-agent/insurance_claims/config.py index c285bbcb..63b8af9c 100644 --- a/examples/insurance-claims-agent/insurance_claims/config.py +++ b/examples/insurance-claims-agent/insurance_claims/config.py @@ -1,6 +1,5 @@ from __future__ import annotations -import json import os from dataclasses import dataclass from pathlib import Path @@ -12,9 +11,7 @@ ROOT = Path(__file__).resolve().parent.parent DATA_DIR = ROOT / "data" SOURCE_DIR = DATA_DIR / "sources" -PACKET_DIR = DATA_DIR / "claim-packet" RUNS_DIR = ROOT / "runs" -FIXTURES_DIR = ROOT / "fixtures" @dataclass(frozen=True) @@ -31,7 +28,6 @@ class ModelsConfig: parse: str extract: str rerank: str - vision: str review: str @@ -91,7 +87,6 @@ def load_config() -> AppConfig: parse=os.environ.get("SIE_PARSE_MODEL", model_raw["parse"]), extract=os.environ.get("SIE_EXTRACT_MODEL", model_raw["extract"]), rerank=os.environ.get("SIE_RERANK_MODEL", model_raw["rerank"]), - vision=os.environ.get("SIE_VISION_MODEL", model_raw["vision"]), review=os.environ.get("SIE_REVIEW_MODEL", model_raw["review"]), ) retrieval_raw = raw["retrieval"] @@ -111,12 +106,6 @@ def load_config() -> AppConfig: ), sources=tuple(Source(**row) for row in raw["sources"]), ) - - -def load_claim() -> dict[str, Any]: - return json.loads((FIXTURES_DIR / "claim.json").read_text(encoding="utf-8")) - - def source_by_slug(config: AppConfig, slug: str) -> Source: for source in config.sources: if source.slug == slug: diff --git a/examples/insurance-claims-agent/insurance_claims/evaluate.py b/examples/insurance-claims-agent/insurance_claims/evaluate.py index 14c5c334..8cddc948 100644 --- a/examples/insurance-claims-agent/insurance_claims/evaluate.py +++ b/examples/insurance-claims-agent/insurance_claims/evaluate.py @@ -19,32 +19,76 @@ class Check: detail: str +def _close(value: object, expected: float) -> bool: + try: + return abs(float(value) - expected) < 0.01 + except (TypeError, ValueError): + return False + + def evaluate_review(review: dict[str, Any]) -> list[Check]: - summary = review.get("claim_summary", {}) - categories = {finding.get("category") for finding in review.get("findings", [])} - blocking_signature = any( - finding.get("category") == "missing_signature" and finding.get("severity") == "blocking" - for finding in review.get("findings", []) - ) + summary = review.get("appeal_summary", {}) + decision = review.get("decision", {}) + findings = review.get("findings", []) + categories = {finding.get("category") for finding in findings} + covered = str(decision.get("covered_scope", "")).casefold() + excluded = str(decision.get("excluded_scope", "")).casefold() + evidence = str(decision.get("evidence_needed", "")).casefold() + overlap = str(decision.get("prior_claim_check", "")).casefold() + return [ - Check("manual-review-route", review.get("route") == "manual_review", str(review.get("route"))), Check( - "claimed-total", - abs(float(summary.get("claimed_total", 0)) - 81060) < 0.01, - str(summary.get("claimed_total")), + "scope-review-route", + review.get("route") == "scope_review_required", + str(review.get("route")), ), Check( - "attachment-total", - abs(float(summary.get("attachment_total", 0)) - 80660) < 0.01, - str(summary.get("attachment_total")), + "proof-of-loss-amount", + _close(summary.get("proof_of_loss_amount"), 182552), + str(summary.get("proof_of_loss_amount")), ), Check( - "difference", - abs(float(summary.get("difference", 0)) - 400) < 0.01, - str(summary.get("difference")), + "removal-estimate", + _close(summary.get("removal_estimate"), 49500), + str(summary.get("removal_estimate")), + ), + Check( + "barge-estimate", + _close(summary.get("barge_estimate"), 181832.94), + str(summary.get("barge_estimate")), + ), + Check( + "debris-volume", + summary.get("debris_cubic_yards_min") == 12 + and summary.get("debris_cubic_yards_max") == 15, + f"{summary.get('debris_cubic_yards_min')} to {summary.get('debris_cubic_yards_max')}", + ), + Check( + "covered-scope", + "underneath" in covered and "perimeter" in covered, + str(decision.get("covered_scope")), + ), + Check( + "excluded-scope", + "barge" in excluded and "disposal" in excluded, + str(decision.get("excluded_scope")), + ), + Check( + "price-support", + ("estimate" in evidence or "contractor" in evidence) + and ("previous" in overlap or "prior" in overlap), + f"{decision.get('evidence_needed')} | {decision.get('prior_claim_check')}", + ), + Check( + "finding-categories", + { + "covered_removal", + "excluded_transport", + "price_support", + "prior_claim_overlap", + }.issubset(categories), + ", ".join(sorted(str(category) for category in categories)), ), - Check("missing-signature", blocking_signature, "blocking finding required"), - Check("amount-mismatch", "amount_mismatch" in categories, "amount_mismatch finding required"), ] @@ -78,7 +122,7 @@ def evaluate_run(run_dir: Path) -> bool: def main() -> None: - parser = argparse.ArgumentParser(description="Check the saved claim-review result") + parser = argparse.ArgumentParser(description="Check the saved FEMA appeal review") parser.add_argument("run_dir", type=Path) args = parser.parse_args() if not evaluate_run(args.run_dir): diff --git a/examples/insurance-claims-agent/insurance_claims/fetch.py b/examples/insurance-claims-agent/insurance_claims/fetch.py index 4728dde1..a3896047 100644 --- a/examples/insurance-claims-agent/insurance_claims/fetch.py +++ b/examples/insurance-claims-agent/insurance_claims/fetch.py @@ -52,8 +52,6 @@ def _download(source: Source) -> tuple[bytes, str]: def _validate(source: Source, payload: bytes) -> None: if source.media_type == "application/pdf" and not payload.startswith(b"%PDF"): raise ValueError(f"{source.url} did not return a PDF") - if source.media_type == "image/jpeg" and not payload.startswith(b"\xff\xd8\xff"): - raise ValueError(f"{source.url} did not return a JPEG") def fetch_sources(*, refresh: bool) -> Path: @@ -103,7 +101,7 @@ def fetch_sources(*, refresh: bool) -> Path: def main() -> None: - parser = argparse.ArgumentParser(description="Fetch the public claim form, policy, and damage photograph") + parser = argparse.ArgumentParser(description="Fetch the public FEMA appeal decision and flood policy") parser.add_argument("--refresh", action="store_true") args = parser.parse_args() console.print(f"\nSource manifest: {fetch_sources(refresh=args.refresh)}") diff --git a/examples/insurance-claims-agent/insurance_claims/prepare.py b/examples/insurance-claims-agent/insurance_claims/prepare.py deleted file mode 100644 index 4318a8cf..00000000 --- a/examples/insurance-claims-agent/insurance_claims/prepare.py +++ /dev/null @@ -1,257 +0,0 @@ -from __future__ import annotations - -import json -import shutil -from decimal import Decimal -from pathlib import Path -from typing import Any - -from pypdf import PdfReader, PdfWriter -from reportlab.lib import colors -from reportlab.lib.enums import TA_RIGHT -from reportlab.lib.pagesizes import letter -from reportlab.lib.styles import ParagraphStyle, getSampleStyleSheet -from reportlab.lib.units import inch -from reportlab.platypus import Paragraph, SimpleDocTemplate, Spacer, Table, TableStyle -from rich.console import Console - -from insurance_claims.config import FIXTURES_DIR, PACKET_DIR, load_claim, load_config, source_by_slug - -console = Console() -FIELD_PREFIX = "CBP303[0].FEMAFormTemplate[0]." - - -def _money(value: Decimal | float) -> str: - return f"{Decimal(str(value)):,.2f}" - - -def line_total(row: list[Any]) -> Decimal: - return Decimal(str(row[1])) * Decimal(str(row[3])) - - -def reconciliation(claim: dict[str, Any]) -> dict[str, Decimal]: - building_attachment = sum((line_total(row) for row in claim["estimate"]["building"]), Decimal()) - contents_attachment = sum((line_total(row) for row in claim["estimate"]["contents"]), Decimal()) - proof = claim["proof_of_loss"] - claimed_total = Decimal(str(proof["building_net_claimed"])) + Decimal(str(proof["contents_net_claimed"])) - attachment_total = ( - building_attachment - - Decimal(str(proof["building_deductible"])) - + contents_attachment - - Decimal(str(proof["contents_deductible"])) - ) - return { - "building_attachment_acv": building_attachment, - "contents_attachment_acv": contents_attachment, - "claimed_total": claimed_total, - "attachment_total": attachment_total, - "difference": claimed_total - attachment_total, - } - - -def _field(name: str) -> str: - return f"{FIELD_PREFIX}{name}" - - -def _fill_proof_of_loss(template: Path, destination: Path, claim: dict[str, Any]) -> None: - property_data = claim["property"] - contact = claim["contact"] - proof = claim["proof_of_loss"] - values = { - _field("CheckBox1[0]"): "/1", - _field("TextField1[0]"): claim["insured_name"], - _field("TextField2[0]"): claim["policy_number"], - _field("Table1[0].Row1[0].Cell1[0]"): property_data["street"], - _field("Table1[0].Row2[0].Cell1[0]"): property_data["city"], - _field("Table1[0].Row2[0].Cell2[0]"): property_data["state"], - _field("Table1[0].Row2[0].Cell3[0]"): property_data["zip"], - _field("TextField3[0]"): claim["date_of_loss"], - _field("CheckBox4[0]"): "/1", - _field("TextField5[0]"): claim["mailing_address"], - _field("TextField7[0]"): property_data["city"], - _field("DropDownList1[0]"): property_data["state"], - _field("TextField8[0]"): property_data["zip"], - _field("TextField9[0]"): "Sample Flood Insurance Co.", - _field("TextField10[0]"): contact["phone"], - _field("TextField12[0]"): contact["email"], - _field("TextField13[0]"): contact["phone"], - _field("CheckBox5[0]"): "/1", - _field("CheckBox7[0]"): "/1", - _field("CheckBox12[0]"): "/1", - _field("TextField15[0]"): _money(claim["coverage"]["building"]), - _field("TextField16[0]"): _money(claim["coverage"]["contents"]), - _field("TextField17[0]"): _money(proof["building_rcv"]), - _field("TextField18[0]"): _money(proof["contents_rcv"]), - _field("TextField19[0]"): _money(proof["building_acv"]), - _field("TextField20[0]"): _money(proof["contents_acv"]), - _field("TextField21[0]"): _money(proof["building_depreciation"]), - _field("TextField22[0]"): _money(proof["building_deductible"]), - _field("TextField23[0]"): _money(proof["contents_deductible"]), - _field("TextField24[0]"): _money(proof["building_net_claimed"]), - _field("TextField25[0]"): _money(proof["contents_net_claimed"]), - _field("CheckBox13[0]"): "/1", - } - reader = PdfReader(template) - writer = PdfWriter() - writer.clone_document_from_reader(reader) - writer.update_page_form_field_values(writer.pages[0], values, auto_regenerate=False) - writer.set_need_appearances_writer(True) - with destination.open("wb") as output: - writer.write(output) - - -def _estimate_rows(rows: list[list[Any]]) -> list[list[str]]: - result = [["Description", "Qty.", "Unit", "Unit price", "Line total"]] - for description, quantity, unit, price in rows: - result.append( - [ - str(description), - f"{quantity:g}" if isinstance(quantity, float) else str(quantity), - str(unit), - f"${_money(price)}", - f"${_money(line_total([description, quantity, unit, price]))}", - ] - ) - return result - - -def _create_estimate(destination: Path, claim: dict[str, Any]) -> None: - styles = getSampleStyleSheet() - small = ParagraphStyle("small", parent=styles["BodyText"], fontSize=8, leading=10) - right = ParagraphStyle("right", parent=styles["BodyText"], alignment=TA_RIGHT, fontSize=9) - document = SimpleDocTemplate( - str(destination), - pagesize=letter, - rightMargin=0.55 * inch, - leftMargin=0.55 * inch, - topMargin=0.45 * inch, - bottomMargin=0.45 * inch, - title=f"Repair estimate for {claim['claim_number']}", - ) - story = [ - Paragraph("SYNTHETIC SAMPLE CLAIM", styles["Heading4"]), - Paragraph("Bayou Restoration Co. (fictional)", styles["Title"]), - Paragraph( - f"Estimate BR-1042 · Claim {claim['claim_number']}
    " - f"{claim['property']['street']}, {claim['property']['city']}, " - f"{claim['property']['state']} {claim['property']['zip']}", - styles["BodyText"], - ), - Spacer(1, 12), - Paragraph("Building repair estimate", styles["Heading2"]), - ] - table_style = TableStyle( - [ - ("BACKGROUND", (0, 0), (-1, 0), colors.HexColor("#E7E7E7")), - ("TEXTCOLOR", (0, 0), (-1, 0), colors.HexColor("#222222")), - ("FONTNAME", (0, 0), (-1, 0), "Helvetica-Bold"), - ("FONTNAME", (0, 1), (-1, -1), "Helvetica"), - ("FONTSIZE", (0, 0), (-1, -1), 7.5), - ("LEADING", (0, 0), (-1, -1), 9), - ("ALIGN", (1, 1), (-1, -1), "RIGHT"), - ("GRID", (0, 0), (-1, -1), 0.35, colors.HexColor("#AAAAAA")), - ("VALIGN", (0, 0), (-1, -1), "TOP"), - ("TOPPADDING", (0, 0), (-1, -1), 4), - ("BOTTOMPADDING", (0, 0), (-1, -1), 4), - ] - ) - building_table = Table( - _estimate_rows(claim["estimate"]["building"]), - colWidths=[3.05 * inch, 0.45 * inch, 0.65 * inch, 0.8 * inch, 0.85 * inch], - repeatRows=1, - ) - building_table.setStyle(table_style) - story.extend([building_table, Spacer(1, 12), Paragraph("Contents inventory", styles["Heading2"])]) - contents_table = Table( - _estimate_rows(claim["estimate"]["contents"]), - colWidths=[3.05 * inch, 0.45 * inch, 0.65 * inch, 0.8 * inch, 0.85 * inch], - repeatRows=1, - ) - contents_table.setStyle(table_style) - totals = reconciliation(claim) - proof = claim["proof_of_loss"] - summary = Table( - [ - ["Building attachment ACV", f"${_money(totals['building_attachment_acv'])}"], - ["Contents attachment ACV", f"${_money(totals['contents_attachment_acv'])}"], - ["Less deductibles", f"-${_money(proof['building_deductible'] + proof['contents_deductible'])}"], - ["Attachment net total", f"${_money(totals['attachment_total'])}"], - ], - colWidths=[4.85 * inch, 1.0 * inch], - hAlign="RIGHT", - ) - summary.setStyle( - TableStyle( - [ - ("ALIGN", (1, 0), (1, -1), "RIGHT"), - ("FONTNAME", (0, -1), (-1, -1), "Helvetica-Bold"), - ("LINEABOVE", (0, -1), (-1, -1), 0.8, colors.black), - ("FONTSIZE", (0, 0), (-1, -1), 9), - ("TOPPADDING", (0, 0), (-1, -1), 4), - ("BOTTOMPADDING", (0, 0), (-1, -1), 4), - ] - ) - ) - story.extend( - [ - contents_table, - Spacer(1, 14), - summary, - Spacer(1, 14), - Paragraph( - "This estimate is an explicitly fictional fixture for software evaluation. " - "It is not an estimate, offer, policy interpretation, or claim decision.", - small, - ), - Paragraph(f"Prepared for evaluation on claim {claim['claim_number']}.", right), - ] - ) - document.build(story) - - -def prepare_claim() -> Path: - config = load_config() - claim = load_claim() - template = source_by_slug(config, "nfip-proof-of-loss").path - photo = source_by_slug(config, "flooded-house-interior").path - if not template.exists() or not photo.exists(): - raise FileNotFoundError("Missing source files. Run `uv run fetch-claim-sources` first.") - PACKET_DIR.mkdir(parents=True, exist_ok=True) - proof_path = PACKET_DIR / "filled-proof-of-loss.pdf" - estimate_path = PACKET_DIR / "repair-estimate-and-inventory.pdf" - photo_path = PACKET_DIR / "damage-photo.jpg" - note_path = PACKET_DIR / "claim-note.txt" - _fill_proof_of_loss(template, proof_path, claim) - _create_estimate(estimate_path, claim) - shutil.copyfile(photo, photo_path) - shutil.copyfile(FIXTURES_DIR / "claim-note.txt", note_path) - totals = reconciliation(claim) - manifest = { - "fictional": True, - "claim_number": claim["claim_number"], - "files": { - "proof_of_loss": str(proof_path.relative_to(PACKET_DIR)), - "estimate": str(estimate_path.relative_to(PACKET_DIR)), - "damage_photo": str(photo_path.relative_to(PACKET_DIR)), - "claim_note": str(note_path.relative_to(PACKET_DIR)), - "policy": str(source_by_slug(config, "sfip-dwelling-policy").path), - }, - "expected_evidence": {key: float(value) for key, value in totals.items()}, - "known_issues": ["missing_signature", "amount_mismatch"], - } - manifest_path = PACKET_DIR / "manifest.json" - manifest_path.write_text(json.dumps(manifest, indent=2) + "\n", encoding="utf-8") - console.print(f"Claim packet: {manifest_path}") - console.print( - f"Form claims ${_money(totals['claimed_total'])}; attachments support " - f"${_money(totals['attachment_total'])}; difference ${_money(totals['difference'])}." - ) - return manifest_path - - -def main() -> None: - prepare_claim() - - -if __name__ == "__main__": - main() diff --git a/examples/insurance-claims-agent/insurance_claims/review.py b/examples/insurance-claims-agent/insurance_claims/review.py index a46e9d30..aee3b098 100644 --- a/examples/insurance-claims-agent/insurance_claims/review.py +++ b/examples/insurance-claims-agent/insurance_claims/review.py @@ -12,14 +12,18 @@ from sie_sdk import SIEClient from sie_sdk.types import Item -from insurance_claims.config import PACKET_DIR, RUNS_DIR, load_claim, load_config, source_by_slug -from insurance_claims.prepare import reconciliation +from insurance_claims.config import ( + DATA_DIR, + RUNS_DIR, + load_config, + source_by_slug, +) console = Console() POLICY_QUERY = ( - "What must the policyholder submit after a flood loss, including the signed proof of loss, " - "supporting estimates, inventory, photographs, and filing deadline?" + "What does the Standard Flood Insurance Policy cover for removal of non-owned flood debris " + "on or in insured property, and which transport, disposal, or yard-removal costs are excluded?" ) REVIEW_SCHEMA: dict[str, Any] = { @@ -27,17 +31,45 @@ "properties": { "route": { "type": "string", - "enum": ["manual_review", "ready_for_adjuster", "return_to_policyholder"], + "enum": [ + "scope_review_required", + "affirm_denial", + "insufficient_record", + ], }, "headline": {"type": "string"}, - "claim_summary": { + "appeal_summary": { "type": "object", "properties": { - "claimed_total": {"type": "number"}, - "attachment_total": {"type": "number"}, - "difference": {"type": "number"}, + "proof_of_loss_amount": {"type": "number"}, + "removal_estimate": {"type": "number"}, + "barge_estimate": {"type": "number"}, + "debris_cubic_yards_min": {"type": "integer"}, + "debris_cubic_yards_max": {"type": "integer"}, }, - "required": ["claimed_total", "attachment_total", "difference"], + "required": [ + "proof_of_loss_amount", + "removal_estimate", + "barge_estimate", + "debris_cubic_yards_min", + "debris_cubic_yards_max", + ], + "additionalProperties": False, + }, + "decision": { + "type": "object", + "properties": { + "covered_scope": {"type": "string"}, + "excluded_scope": {"type": "string"}, + "evidence_needed": {"type": "string"}, + "prior_claim_check": {"type": "string"}, + }, + "required": [ + "covered_scope", + "excluded_scope", + "evidence_needed", + "prior_claim_check", + ], "additionalProperties": False, }, "findings": { @@ -48,16 +80,16 @@ "category": { "type": "string", "enum": [ - "missing_signature", - "amount_mismatch", - "policy_deadline", - "photo_scope", + "covered_removal", + "excluded_transport", + "price_support", + "prior_claim_overlap", "other", ], }, "severity": { "type": "string", - "enum": ["blocking", "high", "medium", "low"], + "enum": ["decision", "high", "medium", "low"], }, "title": {"type": "string"}, "evidence": {"type": "string"}, @@ -65,23 +97,30 @@ "type": "array", "items": { "type": "string", - "enum": [ - "proof_of_loss", - "estimate", - "policy", - "damage_photo", - "claim_note", - ], + "enum": ["appeal_decision", "policy"], }, }, }, - "required": ["category", "severity", "title", "evidence", "sources"], + "required": [ + "category", + "severity", + "title", + "evidence", + "sources", + ], "additionalProperties": False, }, }, "next_actions": {"type": "array", "items": {"type": "string"}}, }, - "required": ["route", "headline", "claim_summary", "findings", "next_actions"], + "required": [ + "route", + "headline", + "appeal_summary", + "decision", + "findings", + "next_actions", + ], "additionalProperties": False, } @@ -95,7 +134,10 @@ def _json_default(value: Any) -> Any: def _write_json(path: Path, value: Any) -> None: - path.write_text(json.dumps(value, indent=2, default=_json_default) + "\n", encoding="utf-8") + path.write_text( + json.dumps(value, indent=2, default=_json_default) + "\n", + encoding="utf-8", + ) def _parse_document( @@ -122,7 +164,11 @@ def _parse_document( def chunk_markdown(markdown: str, target_characters: int) -> list[str]: - paragraphs = [paragraph.strip() for paragraph in markdown.split("\n\n") if paragraph.strip()] + paragraphs = [ + paragraph.strip() + for paragraph in markdown.split("\n\n") + if paragraph.strip() + ] chunks: list[str] = [] current: list[str] = [] current_size = 0 @@ -139,8 +185,20 @@ def chunk_markdown(markdown: str, target_characters: int) -> list[str]: return chunks -def _policy_candidates(chunks: list[str], limit: int) -> list[tuple[int, str]]: - terms = ("proof of loss", "signed", "sworn", "60 days", "estimate", "inventory", "photograph") +def _policy_candidates( + chunks: list[str], + limit: int, +) -> list[tuple[int, str]]: + terms = ( + "debris", + "non-owned", + "removal", + "insured property", + "disposal", + "flood-borne", + "building", + "yard", + ) ranked = sorted( enumerate(chunks), key=lambda row: sum(term in row[1].casefold() for term in terms), @@ -164,7 +222,7 @@ def _retrieve_policy( started = time.perf_counter() score_result = client.score( model, - Item(id="policy-requirements", text=POLICY_QUERY), + Item(id="debris-removal-scope", text=POLICY_QUERY), [Item(id=str(index), text=text) for index, text in candidates], wait_for_capacity=True, provision_timeout_s=provision_timeout_s, @@ -178,27 +236,33 @@ def _retrieve_policy( "score": score["score"], "text": by_index[score["item_id"]], } - for score in sorted(score_result["scores"], key=lambda item: item["rank"])[:result_limit] + for score in sorted( + score_result["scores"], + key=lambda item: item["rank"], + )[:result_limit] ] return selected, score_result, duration_ms -def _extract_claim_identity( +def _extract_claim_facts( client: SIEClient, model: str, markdown: str, provision_timeout_s: float, ) -> tuple[dict[str, Any], float]: labels = [ - "insured name", - "flood insurance policy number", - "date and time of loss", - "insured property address", + "proof of loss amount", + "debris removal estimate", + "barge transportation estimate", + "debris volume", + "date of loss", + "covered debris removal scope", + "excluded debris cost", ] started = time.perf_counter() result = client.extract( model, - Item(id="claim-identity", text=markdown[:5000]), + Item(id="appeal-facts", text=markdown[:12000]), labels=labels, wait_for_capacity=True, provision_timeout_s=provision_timeout_s, @@ -206,39 +270,6 @@ def _extract_claim_identity( return result, round((time.perf_counter() - started) * 1000, 1) -def _analyze_photo( - client: SIEClient, - model: str, - photo_path: Path, - provision_timeout_s: float, -) -> tuple[dict[str, Any], str, float]: - labels = [ - "standing water", - "flooded room", - "water damaged wall", - "damaged furniture", - "debris", - ] - started = time.perf_counter() - result = client.extract( - model, - Item(id="damage-photo", images=[photo_path]), - labels=labels, - options={"score_threshold": 0.05}, - wait_for_capacity=True, - provision_timeout_s=provision_timeout_s, - ) - duration_ms = round((time.perf_counter() - started) * 1000, 1) - objects = result.get("data", {}).get("objects", result.get("objects", [])) - content = "\n".join( - f"- {item['label']}: confidence {float(item['score']):.3f}, bbox {item['bbox']}" - for item in objects - ) - if not content: - content = "- No requested damage category exceeded the 0.05 confidence threshold." - return result, content, duration_ms - - def _json_object_from_text(text: str) -> dict[str, Any]: stripped = text.strip() if stripped.startswith("```"): @@ -258,53 +289,44 @@ def _final_review( client: SIEClient, model: str, *, - form_markdown: str, - estimate_markdown: str, - claim_identity: dict[str, Any], + appeal_markdown: str, + claim_facts: dict[str, Any], policy_chunks: list[dict[str, Any]], - photo_analysis: str, - claim_note: str, - totals: dict[str, Any], provision_timeout_s: float, ) -> tuple[dict[str, Any], dict[str, Any], float]: - policy_evidence = "\n\n".join(f"[policy chunk {chunk['chunk_id']}]\n{chunk['text']}" for chunk in policy_chunks) + policy_evidence = "\n\n".join( + f"[policy chunk {chunk['chunk_id']}]\n{chunk['text']}" + for chunk in policy_chunks + ) prompt = f""" -Review this fictional flood claim packet and return the required JSON. - -Rules: -- Route the packet for manual review. This is evidence triage, not a coverage or payment decision. -- The proof of loss has no policyholder signature and no signature date. -- Report the arithmetic exactly as supplied below. -- Create a blocking missing_signature finding and a high-severity amount_mismatch finding. -- Cite only the source identifiers allowed by the schema. -- Treat the photograph as limited supporting evidence. Do not claim it proves hidden damage, quantities, or cost. +Summarize FEMA Flood Insurance Appeal Decision B8 as a cited operations review. -Reconciliation calculated from the form and attachment line items: -{json.dumps(totals, indent=2, default=_json_default)} +Read the decision's background, rules, analysis, and conclusion. Separate the +physical work FEMA directed the insurer to cover from transport, handling, +disposal, yard work, and other costs outside that scope. Preserve the three +published dollar amounts and the debris-volume range exactly. Record the +additional price evidence and prior-claim checks FEMA requested. -Structured claim identity: -{json.dumps(claim_identity, indent=2, default=_json_default)} +This is a summary of a completed public appeal. Do not make a new coverage or +payment decision. Cite only the source identifiers allowed by the schema. -Claim note: -{claim_note} +Entities extracted from the appeal: +{json.dumps(claim_facts, indent=2, default=_json_default)} -Proof of loss: -{form_markdown[:10000]} +FEMA appeal decision: +{appeal_markdown[:18000]} -Repair estimate and contents inventory: -{estimate_markdown[:10000]} - -Damage photograph analysis: -{photo_analysis} - -Retrieved policy language: +Retrieved Standard Flood Insurance Policy language: {policy_evidence} Required JSON schema: {json.dumps(REVIEW_SCHEMA, indent=2)} """.strip() generation_prompt = f"""<|im_start|>system -You review claim evidence for an insurance operations team. Return sourced discrepancies and the next evidence request. Never make a final coverage, fraud, liability, or payment decision. Return only one JSON object that matches the supplied schema.<|im_end|> +You summarize public insurance appeal records for an operations team. Return +the published outcome, its exact scope, cited facts, and unresolved evidence. +Never decide a live claim. Return only one JSON object matching the supplied +schema.<|im_end|> <|im_start|>user {prompt}<|im_end|> <|im_start|>assistant @@ -313,7 +335,7 @@ def _final_review( result = client.generate( model, generation_prompt, - max_new_tokens=1500, + max_new_tokens=1800, temperature=0, top_p=1, wait_for_capacity=True, @@ -324,23 +346,26 @@ def _final_review( return result, _json_object_from_text(content), duration_ms -def _require_packet() -> Path: - packet_manifest_path = PACKET_DIR / "manifest.json" - if not packet_manifest_path.exists(): - raise FileNotFoundError("Missing prepared packet. Run `uv run prepare-claim` first.") - return packet_manifest_path +def _require_sources() -> None: + config = load_config() + missing = [source.path for source in config.sources if not source.path.exists()] + if missing: + names = ", ".join(path.name for path in missing) + raise FileNotFoundError( + f"Missing source files: {names}. Run `uv run fetch-claim-sources` first." + ) def run_default_stage(run_id: str) -> Path: config = load_config() - _require_packet() + _require_sources() run_dir = RUNS_DIR / run_id raw_dir = run_dir / "raw" markdown_dir = run_dir / "markdown" raw_dir.mkdir(parents=True, exist_ok=False) markdown_dir.mkdir(parents=True, exist_ok=True) - parse_client = SIEClient( + client = SIEClient( config.cluster.url, api_key=config.cluster.api_key or None, timeout_s=config.cluster.request_timeout_s, @@ -348,44 +373,52 @@ def run_default_stage(run_id: str) -> Path: timings: dict[str, float] = {} try: documents = { - "proof_of_loss": PACKET_DIR / "filled-proof-of-loss.pdf", - "estimate": PACKET_DIR / "repair-estimate-and-inventory.pdf", + "appeal_decision": source_by_slug(config, "nfip-appeal-b8").path, "policy": source_by_slug(config, "sfip-dwelling-policy").path, } markdown: dict[str, str] = {} for name, path in documents.items(): result, text, duration_ms = _parse_document( - parse_client, + client, config.models.parse, path, config.cluster.provision_timeout_s, ) _write_json(raw_dir / f"{name}-parse.json", result) - (markdown_dir / f"{name}.md").write_text(text.rstrip() + "\n", encoding="utf-8") + (markdown_dir / f"{name}.md").write_text( + text.rstrip() + "\n", + encoding="utf-8", + ) markdown[name] = text timings[f"parse_{name}_ms"] = duration_ms - identity_result, timings["extract_claim_identity_ms"] = _extract_claim_identity( - parse_client, + facts_result, timings["extract_claim_facts_ms"] = _extract_claim_facts( + client, config.models.extract, - markdown["proof_of_loss"], + markdown["appeal_decision"], config.cluster.provision_timeout_s, ) - _write_json(raw_dir / "claim-identity.json", identity_result) - - policy_chunks, rerank_result, timings["rerank_policy_ms"] = _retrieve_policy( - parse_client, - config.models.rerank, - markdown["policy"], - chunk_characters=config.retrieval.chunk_characters, - candidate_limit=config.retrieval.candidate_chunks, - result_limit=config.retrieval.result_chunks, - provision_timeout_s=config.cluster.provision_timeout_s, + _write_json(raw_dir / "claim-facts.json", facts_result) + _write_json( + run_dir / "claim-facts.json", + facts_result.get("data", facts_result), + ) + + policy_chunks, rerank_result, timings["rerank_policy_ms"] = ( + _retrieve_policy( + client, + config.models.rerank, + markdown["policy"], + chunk_characters=config.retrieval.chunk_characters, + candidate_limit=config.retrieval.candidate_chunks, + result_limit=config.retrieval.result_chunks, + provision_timeout_s=config.cluster.provision_timeout_s, + ) ) _write_json(raw_dir / "policy-rerank.json", rerank_result) _write_json(run_dir / "policy-evidence.json", policy_chunks) finally: - parse_client.close() + client.close() _write_json( run_dir / "default-stage.json", @@ -397,7 +430,6 @@ def run_default_stage(run_id: str) -> Path: "rerank": config.models.rerank, }, "timings_ms": timings, - "claim_identity": identity_result.get("data", identity_result), }, ) table = Table("Default-bundle call", "Latency") @@ -410,85 +442,68 @@ def run_default_stage(run_id: str) -> Path: def run_generation_stage(run_id: str) -> Path: config = load_config() - claim = load_claim() - packet_manifest_path = _require_packet() + _require_sources() run_dir = RUNS_DIR / run_id raw_dir = run_dir / "raw" markdown_dir = run_dir / "markdown" default_stage_path = run_dir / "default-stage.json" if not default_stage_path.exists(): - raise FileNotFoundError(f"Missing {default_stage_path}. Run the default stage first.") - default_stage = json.loads(default_stage_path.read_text(encoding="utf-8")) - if not default_stage.get("claim_identity"): - default_stage["claim_identity"] = json.loads( - (raw_dir / "claim-identity.json").read_text(encoding="utf-8") + raise FileNotFoundError( + f"Missing {default_stage_path}. Run the default stage first." ) - markdown = { - name: (markdown_dir / f"{name}.md").read_text(encoding="utf-8") - for name in ("proof_of_loss", "estimate", "policy") - } - policy_chunks = json.loads((run_dir / "policy-evidence.json").read_text(encoding="utf-8")) + default_stage = json.loads(default_stage_path.read_text(encoding="utf-8")) + appeal_markdown = (markdown_dir / "appeal_decision.md").read_text( + encoding="utf-8" + ) + claim_facts = json.loads( + (run_dir / "claim-facts.json").read_text(encoding="utf-8") + ) + policy_chunks = json.loads( + (run_dir / "policy-evidence.json").read_text(encoding="utf-8") + ) timings = dict(default_stage["timings_ms"]) - generation_client = SIEClient( + client = SIEClient( config.cluster.generation_url, api_key=config.cluster.api_key or None, timeout_s=config.cluster.request_timeout_s, ) try: - photo_raw, photo_analysis, timings["analyze_photo_ms"] = _analyze_photo( - generation_client, - config.models.vision, - PACKET_DIR / "damage-photo.jpg", - config.cluster.provision_timeout_s, - ) - _write_json(raw_dir / "photo-analysis.json", photo_raw) - (run_dir / "photo-analysis.md").write_text(photo_analysis.rstrip() + "\n", encoding="utf-8") - - totals = {key: float(value) for key, value in reconciliation(claim).items()} review_raw, review, timings["synthesize_review_ms"] = _final_review( - generation_client, + client, config.models.review, - form_markdown=markdown["proof_of_loss"], - estimate_markdown=markdown["estimate"], - claim_identity=default_stage["claim_identity"], + appeal_markdown=appeal_markdown, + claim_facts=claim_facts, policy_chunks=policy_chunks, - photo_analysis=photo_analysis, - claim_note=(PACKET_DIR / "claim-note.txt").read_text(encoding="utf-8"), - totals=totals, provision_timeout_s=config.cluster.provision_timeout_s, ) _write_json(raw_dir / "review-completion.json", review_raw) _write_json(run_dir / "review.json", review) finally: - generation_client.close() + client.close() manifest = { "run_id": run_id, "run_at": datetime.now(UTC).isoformat(), - "fictional_claim": True, + "public_record": True, "endpoints": { "cluster": default_stage["endpoint"], "generation": config.cluster.generation_url, }, "models": { **default_stage["models"], - "vision": config.models.vision, "review": config.models.review, }, "timings_ms": timings, "source_manifest": "source-manifest.json", - "packet_manifest": "packet-manifest.json", "review": "review.json", } _write_json(run_dir / "manifest.json", manifest) - _write_json( - run_dir / "packet-manifest.json", - json.loads(packet_manifest_path.read_text(encoding="utf-8")), - ) _write_json( run_dir / "source-manifest.json", - json.loads((PACKET_DIR.parent / "source-manifest.json").read_text(encoding="utf-8")), + json.loads( + (DATA_DIR / "source-manifest.json").read_text(encoding="utf-8") + ), ) table = Table("Model call", "Latency") @@ -508,7 +523,9 @@ def run_review(run_id: str | None = None) -> Path: def main() -> None: - parser = argparse.ArgumentParser(description="Review the fictional flood claim through SIE") + parser = argparse.ArgumentParser( + description="Review FEMA Flood Insurance Appeal Decision B8 through SIE" + ) parser.add_argument("--run-id") parser.add_argument( "--stage", @@ -517,7 +534,9 @@ def main() -> None: help="Run both stages, or release the GPU between the default and generation bundles", ) args = parser.parse_args() - selected_run_id = args.run_id or datetime.now(UTC).strftime("%Y%m%dT%H%M%SZ") + selected_run_id = args.run_id or datetime.now(UTC).strftime( + "%Y%m%dT%H%M%SZ" + ) if args.stage == "default": run_default_stage(selected_run_id) elif args.stage == "generation": diff --git a/examples/insurance-claims-agent/pyproject.toml b/examples/insurance-claims-agent/pyproject.toml index d3b73dc9..3b365fb4 100644 --- a/examples/insurance-claims-agent/pyproject.toml +++ b/examples/insurance-claims-agent/pyproject.toml @@ -1,21 +1,18 @@ [project] name = "insurance-claims-agent" version = "0.1.0" -description = "Review a realistic flood claim packet with specialized models served by SIE" +description = "Review a public FEMA flood appeal with specialized models served by SIE" readme = "README.md" requires-python = ">=3.12,<3.13" dependencies = [ - "pypdf>=6.0", "python-dotenv>=1.0", "pyyaml>=6.0", - "reportlab>=4.0", "rich>=13.7", "sie-sdk>=0.6.23", ] [project.scripts] fetch-claim-sources = "insurance_claims.fetch:main" -prepare-claim = "insurance_claims.prepare:main" review-claim = "insurance_claims.review:main" eval-claim = "insurance_claims.evaluate:main" diff --git a/examples/insurance-claims-agent/tests/test_config.py b/examples/insurance-claims-agent/tests/test_config.py index 002eb8f5..e8ec0c37 100644 --- a/examples/insurance-claims-agent/tests/test_config.py +++ b/examples/insurance-claims-agent/tests/test_config.py @@ -1,24 +1,20 @@ from __future__ import annotations -from insurance_claims.config import load_claim, load_config +from insurance_claims.config import load_config -def test_source_set_uses_public_government_and_photo_sources() -> None: +def test_source_set_uses_public_fema_documents() -> None: config = load_config() assert [source.slug for source in config.sources] == [ - "nfip-proof-of-loss", + "nfip-appeal-b8", "sfip-dwelling-policy", - "flooded-house-interior", ] + assert all( + source.rights.startswith("U.S. federal government work") + for source in config.sources + ) assert config.models.parse == "docling" - assert config.models.vision == "IDEA-Research/grounding-dino-tiny" + assert config.models.extract == "fastino/gliner2-large-v1" + assert config.models.rerank == "BAAI/bge-reranker-v2-m3" assert config.models.review == "Qwen/Qwen3.5-4B:no-spec" - - -def test_claim_fixture_is_explicitly_fictional() -> None: - claim = load_claim() - - assert claim["fictional"] is True - assert "SAMPLE" in claim["claim_number"] - assert claim["contact"]["email"].endswith(".invalid") diff --git a/examples/insurance-claims-agent/tests/test_prepare.py b/examples/insurance-claims-agent/tests/test_prepare.py deleted file mode 100644 index 6f2ec3bd..00000000 --- a/examples/insurance-claims-agent/tests/test_prepare.py +++ /dev/null @@ -1,16 +0,0 @@ -from __future__ import annotations - -from decimal import Decimal - -from insurance_claims.config import load_claim -from insurance_claims.prepare import reconciliation - - -def test_claim_contains_deliberate_400_dollar_mismatch() -> None: - totals = reconciliation(load_claim()) - - assert totals["building_attachment_acv"] == Decimal("67780.00") - assert totals["contents_attachment_acv"] == Decimal(15880) - assert totals["claimed_total"] == Decimal(81060) - assert totals["attachment_total"] == Decimal("80660.00") - assert totals["difference"] == Decimal("400.00") diff --git a/examples/insurance-claims-agent/tests/test_review.py b/examples/insurance-claims-agent/tests/test_review.py index ce3729e4..27ff86e0 100644 --- a/examples/insurance-claims-agent/tests/test_review.py +++ b/examples/insurance-claims-agent/tests/test_review.py @@ -2,7 +2,7 @@ from insurance_claims.evaluate import evaluate_review from insurance_claims.review import ( - _extract_claim_identity, + _extract_claim_facts, _json_object_from_text, chunk_markdown, ) @@ -12,7 +12,12 @@ class FakeExtractClient: def __init__(self) -> None: self.labels: list[str] | None = None - def extract(self, _model: str, _item: object, **kwargs: object) -> dict[str, object]: + def extract( + self, + _model: str, + _item: object, + **kwargs: object, + ) -> dict[str, object]: self.labels = kwargs.get("labels") # type: ignore[assignment] return {"data": {"entities": []}} @@ -26,36 +31,59 @@ def test_chunk_markdown_keeps_all_paragraphs() -> None: assert len(chunks) == 2 -def test_claim_identity_passes_gliner2_labels() -> None: +def test_claim_fact_extraction_passes_domain_labels() -> None: client = FakeExtractClient() - _extract_claim_identity(client, "fastino/gliner2-large-v1", "claim text", 60) + _extract_claim_facts( + client, + "fastino/gliner2-large-v1", + "appeal text", + 60, + ) assert client.labels == [ - "insured name", - "flood insurance policy number", - "date and time of loss", - "insured property address", + "proof of loss amount", + "debris removal estimate", + "barge transportation estimate", + "debris volume", + "date of loss", + "covered debris removal scope", + "excluded debris cost", ] def test_review_json_accepts_fenced_model_output() -> None: - assert _json_object_from_text('```json\n{"route": "manual_review"}\n```') == { - "route": "manual_review" - } + assert _json_object_from_text( + '```json\n{"route": "scope_review_required"}\n```' + ) == {"route": "scope_review_required"} -def test_evaluation_accepts_expected_review() -> None: +def test_evaluation_accepts_published_appeal_result() -> None: review = { - "route": "manual_review", - "claim_summary": { - "claimed_total": 81060, - "attachment_total": 80660, - "difference": 400, + "route": "scope_review_required", + "appeal_summary": { + "proof_of_loss_amount": 182552, + "removal_estimate": 49500, + "barge_estimate": 181832.94, + "debris_cubic_yards_min": 12, + "debris_cubic_yards_max": 15, + }, + "decision": { + "covered_scope": ( + "Remove flood-borne stones from underneath the insured " + "building to its perimeter." + ), + "excluded_scope": ( + "Barge transport, handling, disposal, and yard removal." + ), + "evidence_needed": "Other contractor estimates.", + "prior_claim_check": "Proof of repairs from previous claims.", }, "findings": [ - {"category": "missing_signature", "severity": "blocking"}, - {"category": "amount_mismatch", "severity": "high"}, + {"category": "covered_removal"}, + {"category": "excluded_transport"}, + {"category": "price_support"}, + {"category": "prior_claim_overlap"}, ], } diff --git a/examples/insurance-claims-agent/uv.lock b/examples/insurance-claims-agent/uv.lock index 60ee6c5b..49afe4f9 100644 --- a/examples/insurance-claims-agent/uv.lock +++ b/examples/insurance-claims-agent/uv.lock @@ -91,28 +91,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0b/a7/71ac2cff56fec219ed242bb11b8efb69fcc4bec75db06fb7bfe35de520e6/certifi-2026.7.22-py3-none-any.whl", hash = "sha256:62f22742b58a1a33014a2b6b706588a8d7e2a88ae7bd1a6ebe8c992928483775", size = 136983, upload-time = "2026-07-22T03:35:11.276Z" }, ] -[[package]] -name = "charset-normalizer" -version = "3.4.9" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/bd/2a/23f34ec9d04624958e137efdc394888716353190e75f25dd22c7a2c7a8aa/charset_normalizer-3.4.9.tar.gz", hash = "sha256:673611bbd43f0810bec0b0f028ddeaaa501190339cac411f347ac76917c3ae7b", size = 152439, upload-time = "2026-07-07T14:34:58.454Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/70/4a/ecbd131485c07fcdfad54e28946d513e3da22ef3b4bd854dcafae54ec739/charset_normalizer-3.4.9-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:45b0cc4e3556cd875e09102988d1ab8356c998b596c9fced84547c8138b487a0", size = 319300, upload-time = "2026-07-07T14:33:15.666Z" }, - { url = "https://files.pythonhosted.org/packages/ec/96/5d9364e3342d69f3a045e1777bc47c85c383e6e9466d561b33fdb419d1f9/charset_normalizer-3.4.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9b2aff1c7b3884512b9512c3eaadd9bab39fb45042ffaaa1dd08ff2b9f8109d9", size = 215802, upload-time = "2026-07-07T14:33:17.031Z" }, - { url = "https://files.pythonhosted.org/packages/4b/4c/5361f9aa7f2cb58d94f2ab831b3d493f69efb1d239654b4744e3c09527cb/charset_normalizer-3.4.9-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9104ed0bd76a429d46f9ec0dbc9b08ad1d2dcdf2b00a5a0daa1c145329b35b44", size = 237171, upload-time = "2026-07-07T14:33:18.576Z" }, - { url = "https://files.pythonhosted.org/packages/50/78/ce342ca4ff30b2eb49fe6d9578df85974f90c67d294113e94efdd9664cbd/charset_normalizer-3.4.9-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7b86a2b16095d250c6f58b3d9b2eee6f4147754344f3dab0922f7c9bf7d226c9", size = 233075, upload-time = "2026-07-07T14:33:20.084Z" }, - { url = "https://files.pythonhosted.org/packages/01/c4/4fa4c8b3097a11f3c5f09a35b72ed6855fb1d332469504962ab7bafcc702/charset_normalizer-3.4.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e226f6218febc71f6c1fc2fafb91c226f75bdc1d8fb12d66823716e891608fd", size = 224256, upload-time = "2026-07-07T14:33:21.747Z" }, - { url = "https://files.pythonhosted.org/packages/87/3a/ad914516df7e358a81aae018caa5e0470ba827fa6d763b1d2e87d920a5f6/charset_normalizer-3.4.9-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:90c44bc373b7687f6948b693cceaea1348ae0975d7474746559494468e3c1d84", size = 208784, upload-time = "2026-07-07T14:33:23.313Z" }, - { url = "https://files.pythonhosted.org/packages/d7/74/3c12f9755717dfe5c5c87da63f35d765fa0c00382ec26bf23f7fae34f2ba/charset_normalizer-3.4.9-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9cdef90ae47919cae358d8ab15797a800ed41da7aba5d72419fb510729e2ed4b", size = 219928, upload-time = "2026-07-07T14:33:24.814Z" }, - { url = "https://files.pythonhosted.org/packages/33/9a/895095b83e7907abd6d3d99aad3a38ad0d9686cc186cb0c94c24320fe63e/charset_normalizer-3.4.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:60f44ade2cf573dad7a277e6f8ca9a51a21dda572b13bd7d8539bb3cd5dbedde", size = 218489, upload-time = "2026-07-07T14:33:26.42Z" }, - { url = "https://files.pythonhosted.org/packages/a1/34/ef5c05f412f42520d7709b7d3784d19640839eb7366ded1755511585429f/charset_normalizer-3.4.9-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:a1786910334ed46ab1dd73222f2cd1e05c2c3bb39f6dddb4f8b36fc382058a39", size = 210267, upload-time = "2026-07-07T14:33:27.952Z" }, - { url = "https://files.pythonhosted.org/packages/83/dc/9b29fa4412b318bf3bfea985c35d67eb55e04b59a7c3f2237168b0e0be6f/charset_normalizer-3.4.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:03d07803992c6c7bbc976327f34b18b6160327fc81cb82c9d504720ac0be3b62", size = 226030, upload-time = "2026-07-07T14:33:29.397Z" }, - { url = "https://files.pythonhosted.org/packages/0e/42/6dbc00b8cd16011691203e33570fa42ed5746599a2e878112d16eab403a3/charset_normalizer-3.4.9-cp312-cp312-win32.whl", hash = "sha256:78841cccf1af7b40f6f716338d50c0902dbe88d9f800b3c973b7a9a0a693a642", size = 151185, upload-time = "2026-07-07T14:33:30.781Z" }, - { url = "https://files.pythonhosted.org/packages/80/cc/f920afd1a23c58ccd53c1d36085a71893a4737ff5e66e0371efab6809850/charset_normalizer-3.4.9-cp312-cp312-win_amd64.whl", hash = "sha256:4b3dac63058cc36820b0dd072f89898604e2d39686fe05321729d00d8ac185a0", size = 162557, upload-time = "2026-07-07T14:33:32.176Z" }, - { url = "https://files.pythonhosted.org/packages/f0/e6/0386d43a261ff4e4b30c5857af7df877254b46bec7b9d1b74b6bf969a90b/charset_normalizer-3.4.9-cp312-cp312-win_arm64.whl", hash = "sha256:78fa18e436a1a0e58dbd7e02fc4473f3f32cceb12df9dfca542d075961c307d2", size = 152665, upload-time = "2026-07-07T14:33:33.711Z" }, - { url = "https://files.pythonhosted.org/packages/98/2b/f97f1c193fb855c345d678f5077d6926034db0722df74c8f057020e05a25/charset_normalizer-3.4.9-py3-none-any.whl", hash = "sha256:68e5f26a1ad57ded6d1cfb85331d1c1a195314756471d97758c48498bb4dcdf5", size = 64538, upload-time = "2026-07-07T14:34:56.993Z" }, -] - [[package]] name = "colorama" version = "0.4.6" @@ -207,10 +185,8 @@ name = "insurance-claims-agent" version = "0.1.0" source = { editable = "." } dependencies = [ - { name = "pypdf" }, { name = "python-dotenv" }, { name = "pyyaml" }, - { name = "reportlab" }, { name = "rich" }, { name = "sie-sdk" }, ] @@ -223,10 +199,8 @@ dev = [ [package.metadata] requires-dist = [ - { name = "pypdf", specifier = ">=6.0" }, { name = "python-dotenv", specifier = ">=1.0" }, { name = "pyyaml", specifier = ">=6.0" }, - { name = "reportlab", specifier = ">=4.0" }, { name = "rich", specifier = ">=13.7" }, { name = "sie-sdk", specifier = ">=0.6.23" }, ] @@ -406,15 +380,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, ] -[[package]] -name = "pypdf" -version = "6.14.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/03/72/7dfd5ff1c9c37de97a731701f51af091325f123d9d4270361c9c69e4431f/pypdf-6.14.2.tar.gz", hash = "sha256:7873f502fe4385e79539b21d872392dc0c4e3714327c15881cbc7fbfd1f95b25", size = 6491182, upload-time = "2026-06-23T14:18:30.859Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/49/e6/136aa8993a2ae7214e0b0ef2edaa0d2e08d1d4e4982635b08a835ff31ec8/pypdf-6.14.2-py3-none-any.whl", hash = "sha256:3f07891af76dc002657e04993ab9b4de81de29f9013b9761d0b7968bff12e946", size = 349514, upload-time = "2026-06-23T14:18:28.867Z" }, -] - [[package]] name = "pytest" version = "9.1.1" @@ -458,19 +423,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, ] -[[package]] -name = "reportlab" -version = "5.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "charset-normalizer" }, - { name = "pillow" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/41/d6/4b7b0cf56880eb96533e607967be6a939e344675601e033d113a0bfa1f4e/reportlab-5.0.0.tar.gz", hash = "sha256:e4494a0c6623ae213bb856fba523171b2b54a7bf629fda02d5e525a7b899a784", size = 3701928, upload-time = "2026-06-18T11:34:31.145Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a3/07/70085c17a369605f15e301d10ab902115019b1126c7253d964afc230c7d6/reportlab-5.0.0-py3-none-any.whl", hash = "sha256:9d5a3affa84919e1111ede580031266a570e93b1ce388219621347965ff1d93c", size = 1956710, upload-time = "2026-06-18T11:34:29.07Z" }, -] - [[package]] name = "rich" version = "15.0.0" From 52487086bd915d692d93de8e1cd7b41bef9dbc5a Mon Sep 17 00:00:00 2001 From: svonava Date: Sun, 26 Jul 2026 12:22:06 -0700 Subject: [PATCH 2/5] examples: pin verified FEMA appeal run --- examples/insurance-claims-agent/README.md | 3 + .../verified-run/README.md | 21 +++++ .../verified-run/claim-facts.json | 65 ++++++++++++++ .../verified-run/evaluation.json | 50 +++++++++++ .../verified-run/manifest.json | 24 ++++++ .../verified-run/policy-evidence.json | 26 ++++++ .../verified-run/raw/policy-rerank.json | 86 +++++++++++++++++++ .../verified-run/review.json | 61 +++++++++++++ .../verified-run/source-manifest.json | 29 +++++++ 9 files changed, 365 insertions(+) create mode 100644 examples/insurance-claims-agent/verified-run/README.md create mode 100644 examples/insurance-claims-agent/verified-run/claim-facts.json create mode 100644 examples/insurance-claims-agent/verified-run/evaluation.json create mode 100644 examples/insurance-claims-agent/verified-run/manifest.json create mode 100644 examples/insurance-claims-agent/verified-run/policy-evidence.json create mode 100644 examples/insurance-claims-agent/verified-run/raw/policy-rerank.json create mode 100644 examples/insurance-claims-agent/verified-run/review.json create mode 100644 examples/insurance-claims-agent/verified-run/source-manifest.json diff --git a/examples/insurance-claims-agent/README.md b/examples/insurance-claims-agent/README.md index 5b68886a..7077e380 100644 --- a/examples/insurance-claims-agent/README.md +++ b/examples/insurance-claims-agent/README.md @@ -34,6 +34,9 @@ The evaluator checks facts stated in FEMA's published decision: The model summarizes a completed public appeal. It does not decide a live claim. +The [`verified-run`](verified-run/) directory records a July 26, 2026 run in +which all ten factual checks passed. + ## Run it ```bash diff --git a/examples/insurance-claims-agent/verified-run/README.md b/examples/insurance-claims-agent/verified-run/README.md new file mode 100644 index 00000000..29c619e2 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/README.md @@ -0,0 +1,21 @@ +# Verified run + +This directory records a successful run against FEMA Flood Insurance Appeal +Decision B8 and the Standard Flood Insurance Policy Dwelling Form. + +- Run ID: `verified-20260726b` +- Run date: July 26, 2026 +- Hardware: one NVIDIA L4 +- Runtime: SIE on Modal +- Evaluation: all ten factual checks passed + +The run used `docling`, `fastino/gliner2-large-v1`, +`BAAI/bge-reranker-v2-m3`, and `Qwen/Qwen3.5-4B:no-spec`. + +`manifest.json` records the models and timings. `source-manifest.json` pins the +publisher URLs and SHA-256 hashes. The other files preserve the extracted +facts, reranked policy passages, structured review, raw reranker response, and +deterministic evaluation. + +The source PDFs are downloaded from FEMA at run time. They are not copied into +this repository. diff --git a/examples/insurance-claims-agent/verified-run/claim-facts.json b/examples/insurance-claims-agent/verified-run/claim-facts.json new file mode 100644 index 00000000..e98c27b9 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/claim-facts.json @@ -0,0 +1,65 @@ +{ + "entities": [ + { + "text": "$935.67", + "label": "excluded debris cost", + "score": 0.80859375, + "start": 2491, + "end": 2498, + "bbox": null + }, + { + "text": "12 to 15 cubic yards", + "label": "debris volume", + "score": 0.97802734375, + "start": 2949, + "end": 2969, + "bbox": null + }, + { + "text": "$182,552.00", + "label": "proof of loss amount", + "score": 0.998046875, + "start": 3065, + "end": 3076, + "bbox": null + }, + { + "text": "$49,500.00", + "label": "debris removal estimate", + "score": 0.9775390625, + "start": 3726, + "end": 3736, + "bbox": null + }, + { + "text": "$181,832.94", + "label": "barge transportation estimate", + "score": 0.9951171875, + "start": 3813, + "end": 3824, + "bbox": null + }, + { + "text": "labor and equipment usage", + "label": "covered debris removal scope", + "score": 0.6630859375, + "start": 7859, + "end": 7884, + "bbox": null + }, + { + "text": "July 2019", + "label": "date of loss", + "score": 0.99658203125, + "start": 9635, + "end": 9644, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "appeal-facts", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/insurance-claims-agent/verified-run/evaluation.json b/examples/insurance-claims-agent/verified-run/evaluation.json new file mode 100644 index 00000000..66d38779 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/evaluation.json @@ -0,0 +1,50 @@ +{ + "passed": true, + "checks": [ + { + "name": "scope-review-route", + "passed": true, + "detail": "scope_review_required" + }, + { + "name": "proof-of-loss-amount", + "passed": true, + "detail": "182552.0" + }, + { + "name": "removal-estimate", + "passed": true, + "detail": "49500.0" + }, + { + "name": "barge-estimate", + "passed": true, + "detail": "181832.94" + }, + { + "name": "debris-volume", + "passed": true, + "detail": "12 to 15" + }, + { + "name": "covered-scope", + "passed": true, + "detail": "Labor and equipment usage to remove 12 to 15 cubic yards of flood-borne stones from underneath the insured building to the area around the perimeter of the building." + }, + { + "name": "excluded-scope", + "passed": true, + "detail": "Disposal costs, yard work, carting debris from the perimeter into a barge, barge transportation, handling, and disposal of non-owned debris." + }, + { + "name": "price-support", + "passed": true, + "detail": "Additional evidence that the contractor's estimated dollar amount is limited strictly to the covered scope of work (labor and equipment under the building). The $3,564 per cubic yard quote requires validation against other estimates. | Verify documentation in the file for previous claims filed on May 20, 2019, May 29, 2019, and June 11, 2019, to ensure no payment overlap occurred for debris removal from the same area before the July 2019 event." + }, + { + "name": "finding-categories", + "passed": true, + "detail": "covered_removal, excluded_transport, price_support, prior_claim_overlap" + } + ] +} diff --git a/examples/insurance-claims-agent/verified-run/manifest.json b/examples/insurance-claims-agent/verified-run/manifest.json new file mode 100644 index 00000000..446d1ca9 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/manifest.json @@ -0,0 +1,24 @@ +{ + "run_id": "verified-20260726b", + "run_at": "2026-07-26T19:15:16.513930+00:00", + "public_record": true, + "endpoints": { + "cluster": "http://localhost:8080", + "generation": "http://127.0.0.1:8081" + }, + "models": { + "parse": "docling", + "extract": "fastino/gliner2-large-v1", + "rerank": "BAAI/bge-reranker-v2-m3", + "review": "Qwen/Qwen3.5-4B:no-spec" + }, + "timings_ms": { + "parse_appeal_decision_ms": 45521.1, + "parse_policy_ms": 16451.1, + "extract_claim_facts_ms": 12234.6, + "rerank_policy_ms": 6310.6, + "synthesize_review_ms": 151737.2 + }, + "source_manifest": "source-manifest.json", + "review": "review.json" +} diff --git a/examples/insurance-claims-agent/verified-run/policy-evidence.json b/examples/insurance-claims-agent/verified-run/policy-evidence.json new file mode 100644 index 00000000..226829ef --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/policy-evidence.json @@ -0,0 +1,26 @@ +[ + { + "chunk_id": "13", + "rank": 0, + "score": 0.9503188729286194, + "text": "## C. Coverage C-Other Coverages\n\n1. Debris Removal\n- a. We will pay the expense to remove non-owned debris that is on or in insured property and debris of insured property anywhere.\n- b. If you or a member of your household perform the removal work, the value of your work will be based on the Federal minimum wage.\n- c. This coverage does not increase the Coverage A or Coverage B limit of liability.\n2. Loss Avoidance Measures\n- a. Sandbags, Supplies, and Labor\n- (1) We will pay up to $1,000 for costs you incur to protect the insured building from a flood or imminent danger of flood, for the following:\n8. (a) Your reasonable expenses to buy:\n9. (i) Sandbags, including sand to fill them;\n10. (ii) Fill for temporary levees;\n11. (iii) Pumps; and\n12. (iv) Plastic sheeting and lumber used in connection with these items.\n13. (b) The value of work, at the Federal minimum wage, that you or a member of your house-hold perform.\n- (2) This coverage for Sandbags, Supplies, and Labor only applies if damage to insured property by or from flood is imminent and the threat of flood damage is apparent enough to lead a person of common prudence to anticipate flood damage. One of the following must also occur:\n15. (a) A general and temporary condition of flooding in the area near the described\n\nlocation must occur, even if the flood does not reach the building; or\n\n- (b) A legally authorized official must issue an evacuation order or other civil order for the community in which the building is located calling for measures to preserve life and property from the peril of flood.\n\nThis coverage does not increase the Coverage A or Coverage B limit of liability." + }, + { + "chunk_id": "23", + "rank": 1, + "score": 0.7388575673103333, + "text": "- ground by reason of earth having been used as insulation material in conjunction with energy efficient building techniques.\n12. Fences, retaining walls, seawalls, bulkheads, wharves, piers, bridges, and docks.\n13. Aircraft or watercraft, or their furnishings and equipment.\n\nfilters, pumps, and pipes, wherever located.\n\n15. Property not eligible for flood insurance pursuant to the provisions of the Coastal Barrier Resources Act and the Coastal Barrier Improvement Act and amendments to these acts.\n14. Hot tubs and spas that are not bathroom fixtures, and swimming pools, and their equipment, such as, but not limited to, heaters,\n16. Personal property you own in common with other unit owners comprising the membership of a condominium association.\n\n## V. EXCLUSIONS\n\nA. We only pay for direct physical loss by or from flood, which means that we do not pay you for:\n\n1. Loss of revenue or profits;\n2. Loss of access to the insured property or described location;\n3. Loss of use of the insured property or described location;\n4. Loss from interruption of business or production;\n5. Any additional living expenses incurred while the insured building is being repaired or is unable to be occupied for any reason;\n6. The cost of complying with any ordinance or law requiring or\n\nregulating the construction, demolition, remodeling, renovation, or repair of property, including removal of any resulting debris. This exclusion does not apply to any eligible activities we describe in Coverage D-Increased Cost of Compliance; or\n\n7. Any other economic loss you suffer." + }, + { + "chunk_id": "6", + "rank": 2, + "score": 0.48630863428115845, + "text": "21. National Flood Insurance Program (NFIP). The program of flood insurance coverage and floodplain management administered under the Act and applicable Federal regulations in Title 44 of the Code of Federal Regulations, Subchapter B.\n22. Policy. The entire written contract between you and us. It includes:\n- a. This printed form;\n- b. The application and Declarations Page;\n- c. Any endorsement(s) that may be issued; and\n- d. Any renewal certificate indicating that coverage has been instituted for a new policy and new policy term. Only one dwelling, which you specifically described in the application, may be insured under this policy.\n23. Pollutants. Substances that include, but are not limited to, any solid, liquid, gaseous, or thermal irritant or contaminant, including smoke, vapor, soot, fumes, acids, alkalis, chemicals, and waste. 'Waste' includes, but is not limited to, materials to be recycled, reconditioned, or reclaimed.\n24. Post-FIRM Building. A building for which construction or substantial improvement occurred after December 31, 1974, or on or after the effective date of an initial Flood Insurance Rate Map (FIRM), whichever is later.\n- a. The 365 days immediately preceding the time of loss; or\n- b. The period of ownership of you or your spouse, if either you or your spouse owned the dwelling for less than 365 days immediately preceding the time of loss.\n26. Probation Surcharge. A flat charge you must pay on each new or renewal policy issued covering property in a community the NFIP has placed on probation under the provisions of 44 CFR 59.24.\n27. Regular Program. The final phase of a community's participation in the National Flood Insurance Program. In this phase, a Flood Insurance Rate Map is in effect and full limits of coverage are available under the Act and the regulations prescribed pursuant to the Act.\n28. Special Flood Hazard Area (SFHA). An area having special flood or mudflow, and/or flood-related erosion hazards, and shown on a Flood Hazard Boundary Map or Flood Insurance Rate Map as Zone A, AO, A1-A30, AE, A99, AH, AR, AR/A, AR/ AE, AR/AH, AR/AO, AR/A1-A30, V1-V30, VE, or V.\n29. Unit. A single-family residential space you own in a condominium building.\n30. Valued Policy. A policy in which the insured and the insurer agree on the value of the property insured, that value being payable in the event of a total loss. The Standard Flood Insurance Policy is not a valued policy.\n25. Principal Residence. The dwelling in which you or your spouse have lived for at least 80 percent of:" + }, + { + "chunk_id": "18", + "rank": 3, + "score": 0.29108163714408875, + "text": "- c. Under the minimum NFIP criteria at 44 CFR 60.3(b)(4), States and communities must require the elevation or floodproofing of buildings in unnumbered A zones to the base flood elevation where elevation data is obtained from a Federal, State, or other source. Such compliance activities are eligible for Coverage D.\n- d. Coverage D will pay for the incremental cost, after demolition or relocation, of elevating or floodproofing a building during its rebuilding at the same or another site to meet State or local floodplain management laws or ordinances, subject to Coverage D Exclusion 5.g below.\n- e. Coverage D will pay to bring a flood-damaged building into compliance with State or local floodplain management laws or ordinances even if the building had received a variance before the present loss from the applicable floodplain management requirements.\n\n## 4. Conditions\n\n- a. When a building insured under Coverage A-Building Property sustains a loss caused by a flood, our payment for the loss under this Coverage D will be for the increased cost to elevate, floodproof, relocate, or demolish (or any combination of these activities) caused by the enforcement of current State or local floodplain management ordinances or laws. Our payment for eligible demolition activities will be for the cost to demolish and clear the site of the building debris or a portion thereof caused by the enforcement of current State or local floodplain management\n\nordinances or laws. Eligible activities for the cost of clearing the site will include those necessary to discontinue utility service to the site and ensure proper abandonment of on-site utilities." + } +] diff --git a/examples/insurance-claims-agent/verified-run/raw/policy-rerank.json b/examples/insurance-claims-agent/verified-run/raw/policy-rerank.json new file mode 100644 index 00000000..66907869 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/raw/policy-rerank.json @@ -0,0 +1,86 @@ +{ + "model": "BAAI/bge-reranker-v2-m3", + "scores": [ + { + "item_id": "13", + "score": 0.9503188729286194, + "rank": 0 + }, + { + "item_id": "23", + "score": 0.7388575673103333, + "rank": 1 + }, + { + "item_id": "6", + "score": 0.48630863428115845, + "rank": 2 + }, + { + "item_id": "18", + "score": 0.29108163714408875, + "rank": 3 + }, + { + "item_id": "4", + "score": 0.28587010502815247, + "rank": 4 + }, + { + "item_id": "14", + "score": 0.2581389248371124, + "rank": 5 + }, + { + "item_id": "3", + "score": 0.23528403043746948, + "rank": 6 + }, + { + "item_id": "2", + "score": 0.17781086266040802, + "rank": 7 + }, + { + "item_id": "1", + "score": 0.1475551724433899, + "rank": 8 + }, + { + "item_id": "11", + "score": 0.1200256198644638, + "rank": 9 + }, + { + "item_id": "7", + "score": 0.0616496242582798, + "rank": 10 + }, + { + "item_id": "9", + "score": 0.0497734509408474, + "rank": 11 + }, + { + "item_id": "50", + "score": 0.018194368109107018, + "rank": 12 + }, + { + "item_id": "8", + "score": 0.01578456163406372, + "rank": 13 + }, + { + "item_id": "33", + "score": 0.007725534029304981, + "rank": 14 + }, + { + "item_id": "10", + "score": 0.0061929901130497456, + "rank": 15 + } + ], + "query_id": "debris-removal-scope" +} diff --git a/examples/insurance-claims-agent/verified-run/review.json b/examples/insurance-claims-agent/verified-run/review.json new file mode 100644 index 00000000..0985e848 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/review.json @@ -0,0 +1,61 @@ +{ + "route": "scope_review_required", + "headline": "FEMA Appeal Decision B8: Debris Removal Scope and Price Verification for July 2019 Flood Loss", + "appeal_summary": { + "proof_of_loss_amount": 182552.0, + "removal_estimate": 49500.0, + "barge_estimate": 181832.94, + "debris_cubic_yards_min": 12, + "debris_cubic_yards_max": 15 + }, + "decision": { + "covered_scope": "Labor and equipment usage to remove 12 to 15 cubic yards of flood-borne stones from underneath the insured building to the area around the perimeter of the building.", + "excluded_scope": "Disposal costs, yard work, carting debris from the perimeter into a barge, barge transportation, handling, and disposal of non-owned debris.", + "evidence_needed": "Additional evidence that the contractor's estimated dollar amount is limited strictly to the covered scope of work (labor and equipment under the building). The $3,564 per cubic yard quote requires validation against other estimates.", + "prior_claim_check": "Verify documentation in the file for previous claims filed on May 20, 2019, May 29, 2019, and June 11, 2019, to ensure no payment overlap occurred for debris removal from the same area before the July 2019 event." + }, + "findings": [ + { + "category": "covered_removal", + "severity": "high", + "title": "Coverage Confirmed for Under-Building Debris Removal", + "evidence": "FEMA affirms SFIP covers the expense to remove non-owned flood debris on or in insured property, specifically labor and equipment usage to remove 12 to 15 cubic yards of stones from underneath the building to the perimeter.", + "sources": [ + "appeal_decision" + ] + }, + { + "category": "excluded_transport", + "severity": "high", + "title": "Exclusion of Yard Work and Transportation Costs", + "evidence": "The SFIP does not cover the expense to dispose non-owned debris, nor does it cover increased costs to remove debris in the yard or transport it by barge for further handling and disposal.", + "sources": [ + "appeal_decision" + ] + }, + { + "category": "price_support", + "severity": "medium", + "title": "Requirement for Reasonable and Customary Pricing Evidence", + "evidence": "The policyholder must provide proof of repairs and price from previous flood losses related to removing stones and debris from underneath the building to validate the quoted price of $3,564 per cubic yard.", + "sources": [ + "appeal_decision" + ] + }, + { + "category": "prior_claim_overlap", + "severity": "high", + "title": "Verification of Prior Debris Removal Payments", + "evidence": "Policyholder has received payments for similar losses in May and June 2019; insurer must verify if debris removal for the same area was performed and paid for prior to the July 2019 flood event to prevent double payment.", + "sources": [ + "appeal_decision" + ] + } + ], + "next_actions": [ + "Direct insurer to review proof of loss documentation packet for completeness regarding covered scope only.", + "Require policyholder to submit additional debris removal estimates from different contractors to support the unit price.", + "Instruct insurer to check claim files for May 20, May 29, and June 11, 2019 events to confirm no prior coverage for this specific debris removal task.", + "Exclude all costs associated with barge transportation ($181,832.94) and yard disposal from any potential payment recommendation." + ] +} diff --git a/examples/insurance-claims-agent/verified-run/source-manifest.json b/examples/insurance-claims-agent/verified-run/source-manifest.json new file mode 100644 index 00000000..3df40c71 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/source-manifest.json @@ -0,0 +1,29 @@ +{ + "fetched_at": "2026-07-26T19:11:05.290899+00:00", + "sources": [ + { + "slug": "nfip-appeal-b8", + "title": "FEMA Flood Insurance Appeal Decision B8", + "file_name": "nfip-appeal-b8.pdf", + "url": "https://www.floodsmart.gov/sites/default/files/media/document/2022-12/B8_Direct%20Physical%20Loss_Proof%20of%20Loss_Overturn.pdf", + "source_page": "https://www.floodsmart.gov/flood-claim-memos/appeal-issue/direct-physical-loss/proof-loss", + "rights": "U.S. federal government work. Do not imply FEMA or DHS endorsement.", + "media_type": "application/pdf", + "retrieval": "publisher", + "bytes": 114918, + "sha256": "8a8e4f852caf8a91e2c88f9ff194c2232d4d331de465d8cad5eb1a0b50efb19a" + }, + { + "slug": "sfip-dwelling-policy", + "title": "Standard Flood Insurance Policy, Dwelling Form", + "file_name": "sfip-dwelling-policy.pdf", + "url": "https://www.fema.gov/sites/default/files/documents/fema_F-122-Dwelling-SFIP_2021.pdf", + "source_page": "https://www.fema.gov/flood-insurance/find-form/underwriting", + "rights": "U.S. federal government work. Do not imply FEMA or DHS endorsement.", + "media_type": "application/pdf", + "retrieval": "bundled-government-source", + "bytes": 393573, + "sha256": "4e91d6417cba13c18d4402083a0c02811da8264be6fcb8557c6afa4f8b6e2e74" + } + ] +} From 871e92d49feae490354d560731ec50020d00bf72 Mon Sep 17 00:00:00 2001 From: svonava Date: Sun, 26 Jul 2026 12:50:29 -0700 Subject: [PATCH 3/5] chore: preserve complete verified insurance run --- .../insurance_claims/evaluate.py | 10 +- .../verified-run/README.md | 10 +- .../verified-run/evaluation.json | 7 +- .../verified-run/markdown/appeal_decision.md | 85 + .../verified-run/markdown/policy.md | 769 + .../raw/appeal_decision-parse.json | 1496 ++ .../verified-run/raw/claim-facts.json | 65 + .../verified-run/raw/policy-parse.json | 21350 ++++++++++++++++ .../verified-run/raw/review-completion.json | 10 + 9 files changed, 23793 insertions(+), 9 deletions(-) create mode 100644 examples/insurance-claims-agent/verified-run/markdown/appeal_decision.md create mode 100644 examples/insurance-claims-agent/verified-run/markdown/policy.md create mode 100644 examples/insurance-claims-agent/verified-run/raw/appeal_decision-parse.json create mode 100644 examples/insurance-claims-agent/verified-run/raw/claim-facts.json create mode 100644 examples/insurance-claims-agent/verified-run/raw/policy-parse.json create mode 100644 examples/insurance-claims-agent/verified-run/raw/review-completion.json diff --git a/examples/insurance-claims-agent/insurance_claims/evaluate.py b/examples/insurance-claims-agent/insurance_claims/evaluate.py index 8cddc948..89216ee3 100644 --- a/examples/insurance-claims-agent/insurance_claims/evaluate.py +++ b/examples/insurance-claims-agent/insurance_claims/evaluate.py @@ -75,9 +75,13 @@ def evaluate_review(review: dict[str, Any]) -> list[Check]: ), Check( "price-support", - ("estimate" in evidence or "contractor" in evidence) - and ("previous" in overlap or "prior" in overlap), - f"{decision.get('evidence_needed')} | {decision.get('prior_claim_check')}", + "estimate" in evidence or "contractor" in evidence, + str(decision.get("evidence_needed")), + ), + Check( + "prior-claim-overlap", + "previous" in overlap or "prior" in overlap, + str(decision.get("prior_claim_check")), ), Check( "finding-categories", diff --git a/examples/insurance-claims-agent/verified-run/README.md b/examples/insurance-claims-agent/verified-run/README.md index 29c619e2..36a84a4b 100644 --- a/examples/insurance-claims-agent/verified-run/README.md +++ b/examples/insurance-claims-agent/verified-run/README.md @@ -13,9 +13,9 @@ The run used `docling`, `fastino/gliner2-large-v1`, `BAAI/bge-reranker-v2-m3`, and `Qwen/Qwen3.5-4B:no-spec`. `manifest.json` records the models and timings. `source-manifest.json` pins the -publisher URLs and SHA-256 hashes. The other files preserve the extracted -facts, reranked policy passages, structured review, raw reranker response, and -deterministic evaluation. +publisher URLs and SHA-256 hashes. `markdown/` and `raw/` preserve every parsed +document and model response. The other files keep the extracted facts, reranked +policy passages, structured review, and deterministic evaluation. -The source PDFs are downloaded from FEMA at run time. They are not copied into -this repository. +The example also includes the two downloaded FEMA PDFs, so the verified run can +be reproduced if a publisher URL changes. diff --git a/examples/insurance-claims-agent/verified-run/evaluation.json b/examples/insurance-claims-agent/verified-run/evaluation.json index 66d38779..9a0ed680 100644 --- a/examples/insurance-claims-agent/verified-run/evaluation.json +++ b/examples/insurance-claims-agent/verified-run/evaluation.json @@ -39,7 +39,12 @@ { "name": "price-support", "passed": true, - "detail": "Additional evidence that the contractor's estimated dollar amount is limited strictly to the covered scope of work (labor and equipment under the building). The $3,564 per cubic yard quote requires validation against other estimates. | Verify documentation in the file for previous claims filed on May 20, 2019, May 29, 2019, and June 11, 2019, to ensure no payment overlap occurred for debris removal from the same area before the July 2019 event." + "detail": "Additional evidence that the contractor's estimated dollar amount is limited strictly to the covered scope of work (labor and equipment under the building). The $3,564 per cubic yard quote requires validation against other estimates." + }, + { + "name": "prior-claim-overlap", + "passed": true, + "detail": "Verify documentation in the file for previous claims filed on May 20, 2019, May 29, 2019, and June 11, 2019, to ensure no payment overlap occurred for debris removal from the same area before the July 2019 event." }, { "name": "finding-categories", diff --git a/examples/insurance-claims-agent/verified-run/markdown/appeal_decision.md b/examples/insurance-claims-agent/verified-run/markdown/appeal_decision.md new file mode 100644 index 00000000..b9593af0 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/markdown/appeal_decision.md @@ -0,0 +1,85 @@ + + +## FEDERAL EMERGENCY MANAGEMENT AGENCY (FEMA) FEDERAL INSURANCE MITIGATION ADMINISTRATION (FIMA) APPEAL DECISION + +FEMA Flood Insurance Appeal Decision #B8 + +## SUMMARY + +The policyholder appealed the flood insurance carrier's (hereinafter 'insurer') denial of a part of their claim under the Standard Flood Insurance Policy (SFIP) 1 for damages to his property arising in July 2019. + +The policyholder files this appeal under 44 C.F.R. § 62.20. The appeals process is available after the insurer issues a written denial, in whole or in part, of the policyholder's claim. 2 + +After reviewing the issues, evidence, and relevant authorities, FEMA affirms the insurer's decision. + +## BACKGROUND + +## COVERAGE + +The policyholder insures property under the SFIP Dwelling Form. At the time of loss, the policyholder had $250,000 of building coverage with a $2,000 deductible. + +## EVENT AND CLAIM FACTS + +In July 2019, an accumulation of heavy rainfall from a severe thunderstorm created overflow from Lake Ontario. The rainfall inundated the insured building and neighboring properties creating a general and temporary condition of flood. + +The policyholder reported the loss to the insurer and the insurer assigned an adjuster to the claim. The adjuster inspected the property in July 2019. The insured building is located on a small island and is accessible only by boat. The adjuster measured a waterline of 24 inches on the exterior of the building. Because the building is elevated, floodwaters were not high enough to reach the building's first floor. Floodwaters were limited to the crawlspace area underneath the building. + +1 See 44 C.F.R. § 61.13 (2018); Dwelling Form available at 44 C.F.R. pt. 61 App. A(1) [hereinafter 'SFIP']. + +2 The policyholder's appeal and related documents concerning the appeal, claim, or policy are on file with FEMA, Federal Insurance and Mitigation Administration, Federal Insurance Directorate, Policyholder Services Division, Appeals Branch [hereinafter 'Appeal File']. + +The building is located in a special flood hazard area (flood zone AE) and was constructed in 1989, after the date the local community entered the federal flood program in 1981. The first floor is elevated by piers. As such, the claim is subject to SFIP coverage limitations for post-FIRM (Flood Insurance Rate Map) elevated buildings. 3 The adjuster took the SFIP's coverage limitations for post-FIRM elevated buildings into account and estimated the cost for flood cleanup at $935.67. + +Because of questions on the claim, the insurer retained an engineer to verify the condition of loss and the amount of flood-borne debris, sand, and stones deposited underneath the building. The same engineer inspected the building in 2018 after a previous flood event. The engineer determined that since the 2018 inspection, only a minor amount of flood-borne debris was deposited under the building. The engineer estimated this amount ranged from 12 to 15 cubic yards of stones and no sand. + +The insurer reviewed the policyholder's amended proof of loss totaling $182,552.00 and denied the policyholder's additional payment request. In a letter dated December 2019, the insurer denied coverage for flood-borne debris removal stating the stones that washed up under the insured building were not covered under the SFIP. + +The policyholder appeals the insurer's denial, stating the SFIP covers debris removal, including the removal of stones. The policyholder requests coverage for the cost to remove 12 to 15 cubic yards of stones as recommended by the insurer's engineer. In support of the appeal, the policyholder provides an estimate from a local service provider to remove the stones from underneath the building totaling $49,500.00 and a second estimate for transporting the removed stones by barge totaling $181,832.94. + +## ISSUE + +The policyholder appeals the insurer's denial of flood-borne debris removal and requests payment to remove stones that were washed in underneath their insured building during the subject flood event. + +## RULES + +The insurer agrees to pay the policyholder for direct physical loss by or from flood to covered property, provided the policyholder complies with all terms and conditions of the SFIP. 4 + +The SFIP covers the expense to remove non-owned flood debris that is on or in insured property. 5 + +In case of a loss or request for payment, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that supports their flood loss and the dollar amount requested. This proof of loss documentation packet should also include details of any other insurance that may cover the loss and other documents such as detailed repair estimates for the current loss, repair estimates and proof of repairs and price from previous flood losses and claim payments. 6 + +3 See SFIP (II)(B)(14), (II)(B)(23), (II)(B)(26), and (III)(A)(8). + +4 See SFIP (I), (II)(B)(12). + +5 See SFIP (III)(C)(1)(a). + +6 See SFIP (VII)(J), (VII)(K). + +## ANALYSIS + +The policyholder appeals the denial of coverage for the cost to remove flood-borne stones deposited underneath the insured building. + +FEMA's review agrees with the policyholder that the SFIP covers the cost to remove flood-borne debris and cleanup of non-owned debris that is on or in the insured property. This scope of coverage may encompass the cost to remove flood-borne debris such as stones, sand, and plant-life that have washed up underneath the insured building's perimeter footprint. The SFIP excludes any additional cost related to a local community ordinance or code compliance order for the removal of any debris. 7 + +The SFIP's scope of coverage for non-owned debris is limited to removal from the insured building. The covered scope of non-owned flood-borne debris is limited to the removal of flood-borne debris underneath the insured building to the area around the perimeter of the building. The SFIP does not cover the expense to dispose non-owned debris because it is not insured property. + +The scope of coverage under the claim for non-owned debris is limited to the labor and equipment usage to remove the 12 to 15 cubic yards of stones. The labor cost should account for any exceptional condition present with working underneath the building within the crawlspace. The SFIP does not cover any increased cost to remove non-owned debris in the yard or to cart debris from the perimeter of the building into a barge, nor the expense for barge transportation, handling, and disposal. + +The policyholder's claim of July 2019, follows three flood claims filed on May 20, 2019, May 29, 2019, and June 11, 2019. The policyholder also reported losses subsequent to the subject flood event that occurred later in July 2019 and October 2019. In order to receive payment on the current and subsequent flood losses, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss documentation packet should include all related estimates to remove debris from underneath the insured building, plus estimates to remove debris from the yard. The packet should include proof of repairs and debris removal from the three previous flood claims filed 2019. + +Because of the large dollar amount presented by the policyholder's contractor, FEMA recommends the policyholder provide additional evidence the estimated dollar amount from its contractor is limited to the covered scope of work. The SFIP does not cover the cost to remove non-owned flood-borne debris from the yard and it does not cover the expense to ship non-owned flood-borne debris by barge for further handling and disposal. The SFIP covers pricing that is reasonable and customary to the loss and location. 8 This includes labor and equipment usage for removing of 12 to 15 cubic yards of stone material. + +The SFIP will cover reasonable additional labor costs customary for site conditions with working underneath the insured building. To ensure the validity of the contractor's quoted price of $3,564 per cubic yard with sales tax, the policyholder should provide the insurer with other debris removal estimates from one or more different contractors. + +7 See SFIP (V)(A)(6). + +8 See National Flood Insurance Program Claims Manual- Section 2.5.2 Building Scope and Estimate. + +Based on previous claims, the policyholder has received payment(s) for similar losses as the subject flood claim. The policyholder should provide proof of repairs and price from the previous losses related to removing stones and debris from underneath the building, as well as the cost paid to remove the same from the yard, even though flood-borne debris removal in the yard is not covered under the SFIP. Because of the price per cubic yard quoted, the policyholder's proof of loss documentation packet should include evidence that the payment request is similarly priced to similar debris removal tasks paid for after the prior flood events. + +## CONCLUSION + +Based on the facts and analysis above, FEMA directs the insurer to cover and pay the cost to remove nonowned flood-borne debris from underneath the insured building to the perimeter of the building in the yard. In order to ensure against a payment overlap, the insurer should review the documentation in its file for the policyholder's previous claims with debris removal. Before issuing any additional payment for the subject July 2019 flood event, the insurer should verify that debris removal for the same area underneath the building was performed before the July 2019 flood event. + +If the policyholder does not agree with the insurer's payment recommendation, he must prove his loss and send the insurer a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss packet should also include the documentation explained above. Any further adjustment of the claim remains under the direction of the insurer, based on the merits of their finding in accordance with all SFIP terms and conditions. diff --git a/examples/insurance-claims-agent/verified-run/markdown/policy.md b/examples/insurance-claims-agent/verified-run/markdown/policy.md new file mode 100644 index 00000000..bea52f7f --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/markdown/policy.md @@ -0,0 +1,769 @@ +National Flood Insurance Program + +## Dwelling Form + +Standard Flood Insurance Policy + +F-122 / October 2021 + + + +Standard Flood Insurance Policy + +## Dwelling Form + +Please read the policy carefully. The flood insurance provided is subject to limitations, restrictions, and exclusions. + +## I. AGREEMENT + +- A. This policy insures the following types of property only: +1. A one to four family residential building, not under a condominium form of ownership; +- E. This policy insures only one building. If you own more than one building, coverage will apply to the single building specifically described in the Flood Insurance Application. +2. A single-family dwelling unit in a condominium building; and +3. Personal property in a building. +- B. The Federal Emergency Management Agency (FEMA) provides flood insurance under the terms of the National Flood Insurance Act of 1968 and its amendments, and Title 44 of the Code of Federal Regulations. +- C. We will pay you for direct physical loss by or from flood to your insured property if you: +1. Have paid the full amount due (including applicable premiums, surcharges, and fees); +2. Comply with all terms and conditions of this policy; and +3. Have furnished accurate information and statements. +- D. We have the right to review the information you give us at any time and revise your policy based on our review. +- F. Subject to the exception in I.G below, multiple policies with building coverage cannot be issued to insure a single building to one insured or to different insureds, even if separate policies were issued through different NFIP insurers. Payment for damages may only be made under a single policy for building damages under Coverage ABuilding Property. +- G. A Dwelling Form policy with building coverage may be issued to a unit owner in a condominium building that is also insured under a Residential Condominium + +Building Association Policy (RCBAP). However, no more than $250,000 may be paid in combined benefits for a single unit under the Dwelling Form policy and the RCBAP. We will only pay for damage once. Items of damage paid for under an RCBAP cannot also be claimed under the Dwelling Form policy. + +## II. DEFINITIONS + +A. In this policy, 'you' and 'your' refer to the named insured(s) shown on the Declarations Page of this policy and the spouse of the named insured, if a resident of the same household. Insured(s) also includes: Any mortgagee and loss payee named in the Application and Declarations Page, as well as any other mortgagee or loss payee determined to exist at the time of loss, in the order of precedence. 'We,' 'us,' and 'our' refer to the insurer. + +Some definitions are complex because they are provided as they appear in the law or regulations, or result from court cases. + +- B. Flood , as used in this flood insurance policy, means: +1. A general and temporary condition of partial or complete inundation of two or more acres of normally dry land area or of two or more properties (one of which is your property) from: +- a. Overflow of inland or tidal waters; +- b. Unusual and rapid accumulation or runoff of surface waters from any source; +- c. Mudflow. +2. Collapse or subsidence of land along the shore of a lake or similar body of water as a result of erosion + +or undermining caused by waves or currents of water exceeding anticipated cyclical levels that result in a flood as defined in B.1.a above. + +C. The following are the other key definitions we use in this policy: + +1. Act. The National Flood Insurance Act of 1968 and any amendments to it. +2. Actual Cash Value. The cost to replace an insured item of property at the time of loss, less the value of its physical depreciation. +3. Application. The statement made and signed by you or your agent in applying for this policy. The application gives information we use to determine the eligibility of the risk, the kind of policy to be issued, and the correct premium payment. The application is part of this flood insurance policy. +4. Base Flood. A flood having a one percent chance of being equaled or exceeded in any given year. +5. Basement. Any area of a building, including any sunken room or sunken portion of a room, having its floor below ground level on all sides. +6. Building +- a. A structure with two or more outside rigid walls and a fully secured roof that is affixed to a permanent site; +- b. A manufactured home, also known as a mobile home, is a structure: built on a permanent chassis, transported to its site in one or more sections, and affixed to a permanent foundation; or +- c. A travel trailer without wheels, built on a chassis and affixed to a permanent foundation, that is regulated under the community's floodplain management and building ordinances or laws. + +Building does not mean a gas or liquid storage tank, shipping container, or a recreational vehicle, park trailer, or other similar vehicle, except as described in C.6.c above. + +7. Cancellation. The ending of the insurance coverage provided by this policy before the expiration date. +8. Condominium. That form of ownership of one or more buildings in which each unit owner has an undivided interest in common elements. +9. Condominium Association. The entity made up of the unit owners responsible for the maintenance and operation of: +- a. Common elements owned in undivided shares by unit owners; and +- b. Other buildings in which the unit owners have use rights; where membership in the entity is a required condition of ownership. +10. Condominium Building. A type of building for which the form of ownership is one in which each unit owner has an undivided interest in common elements of the building. +11. Declarations Page. A computer-generated summary of information you provided in your application for insurance. The Declarations Page also describes the term of the policy, limits of coverage, and displays the premium and our name. The Declarations Page is a part of this flood insurance policy. +12. Deductible. The amount of an insured loss that is your responsibility and that is incurred by you before any amounts are paid for the insured loss under this policy. +13. Described Location. The location where the insured building(s) or personal property are found. The described location is shown on the Declarations Page. +14. D irect Physical Loss By or From Flood. Loss or damage to insured property, directly caused by a flood. There must be evidence of physical changes to the property. +15. Dwelling. A building designed for use as a residence for no more than four families or a single-family unit in a condominium building. +16. Elevated Building. A building that has no basement and that has its lowest elevated floor raised above ground level by foundation walls, shear walls, posts, piers, pilings, or columns. +17. Emergency Program. The initial phase of a community's participation in the National Flood Insurance Program. During this phase, only limited amounts of insurance are available under the Act and the regulations prescribed pursuant to the Act. +18. Federal Policy Fee. A flat rate charge you must pay on each new or renewal policy to defray certain administrative expenses incurred in carrying out the National Flood Insurance Program. +19. Improvements. Fixtures, alterations, installations, or additions comprising a part of the dwelling or apartment in which you reside. +20. Mudflow. A river of liquid and flowing mud on the surface of normally dry land areas, as when earth is carried by a current of water. Other earth movements, such as landslide, slope failure, or + +a saturated soil mass moving by liquidity down a slope, are not mudflows. + +21. National Flood Insurance Program (NFIP). The program of flood insurance coverage and floodplain management administered under the Act and applicable Federal regulations in Title 44 of the Code of Federal Regulations, Subchapter B. +22. Policy. The entire written contract between you and us. It includes: +- a. This printed form; +- b. The application and Declarations Page; +- c. Any endorsement(s) that may be issued; and +- d. Any renewal certificate indicating that coverage has been instituted for a new policy and new policy term. Only one dwelling, which you specifically described in the application, may be insured under this policy. +23. Pollutants. Substances that include, but are not limited to, any solid, liquid, gaseous, or thermal irritant or contaminant, including smoke, vapor, soot, fumes, acids, alkalis, chemicals, and waste. 'Waste' includes, but is not limited to, materials to be recycled, reconditioned, or reclaimed. +24. Post-FIRM Building. A building for which construction or substantial improvement occurred after December 31, 1974, or on or after the effective date of an initial Flood Insurance Rate Map (FIRM), whichever is later. +- a. The 365 days immediately preceding the time of loss; or +- b. The period of ownership of you or your spouse, if either you or your spouse owned the dwelling for less than 365 days immediately preceding the time of loss. +26. Probation Surcharge. A flat charge you must pay on each new or renewal policy issued covering property in a community the NFIP has placed on probation under the provisions of 44 CFR 59.24. +27. Regular Program. The final phase of a community's participation in the National Flood Insurance Program. In this phase, a Flood Insurance Rate Map is in effect and full limits of coverage are available under the Act and the regulations prescribed pursuant to the Act. +28. Special Flood Hazard Area (SFHA). An area having special flood or mudflow, and/or flood-related erosion hazards, and shown on a Flood Hazard Boundary Map or Flood Insurance Rate Map as Zone A, AO, A1-A30, AE, A99, AH, AR, AR/A, AR/ AE, AR/AH, AR/AO, AR/A1-A30, V1-V30, VE, or V. +29. Unit. A single-family residential space you own in a condominium building. +30. Valued Policy. A policy in which the insured and the insurer agree on the value of the property insured, that value being payable in the event of a total loss. The Standard Flood Insurance Policy is not a valued policy. +25. Principal Residence. The dwelling in which you or your spouse have lived for at least 80 percent of: + +## III. PROPERTY INSURED + +are always considered part of the dwelling and cannot be separately insured. + +- A detached garage at the described location. Coverage is limited to no more than 10 percent of the limit of liability on the dwelling. Use of this insurance is at your option but reduces the building limit of liability. We do not cover any detached garage used or held for use for residential (i.e., dwelling), business, or farming purposes. + +## A. Coverage A-Building Property + +We insure against direct physical loss by or from flood to: + +1. The dwelling at the described location, or for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety. +2. Additions and extensions attached to and in contact with the dwelling by means of a rigid exterior wall, a solid load-bearing interior wall, a stairway, an elevated walkway, or a roof. At your option, additions and extensions connected by any of these methods may be separately insured. Additions and extensions attached to and in contact with the building by means of a common interior wall that is not a solid load-bearing wall +3. 3. + +4. Materials and supplies to be used for construction, alteration, or repair of the dwelling or a detached garage while the materials and supplies are stored in a fully enclosed building at the described location or on an adjacent property. +5. A building under construction, alteration, or repair at the described location. +- a. If the structure is not yet walled or roofed as described in the definition for building (see II.C.6.a) then coverage applies: +- (1) Only while such work is in progress; or +- (2) If such work is halted, only for a period of up to 90 continuous days thereafter. +- b. However, coverage does not apply until the building is walled and roofed if the lowest floor, including the basement floor, of a non-elevated building or the lowest elevated floor of an elevated building is: +- (1) Below the base flood elevation in Zones AH, AE, A1-A30, AR, AR/AE, AR/ AH, AR/A1-A30, AR/A, AR/AO; or +- (2) Below the base flood elevation adjusted to include the effect of wave action in Zones VE or V1-V30. + +The lowest floor level is based on the bottom of the lowest horizontal structural member of the floor in Zones VE or V1-V30 or the top of the floor in Zones AH, AE, A1-A30, AR, AR/AE, AR/AH, AR/ A1-A30, AR/A, and AR/AO. + +6. A manufactured home or a travel trailer, as described in the II.C.6. If the manufactured home or travel trailer is in a special flood hazard area, it must be anchored in the following manner at the time of the loss: +- a. By over-the-top or frame ties to ground anchors; or +- b. In accordance with the manufacturer's specifications; or +- c. In compliance with the community's floodplain management requirements unless it has been continuously insured by the NFIP at the same described location since September 30, 1982. +7. The following items of property which are insured under Coverage A only: +- a. Awnings and canopies; +- b. Blinds; +- c. Built-in dishwashers; +- d. Built-in microwave ovens; +- e. Carpet permanently installed over unfinished flooring; +- f. Central air conditioners; +- g. Elevator equipment; +- h. Fire sprinkler systems; +- i. Walk-in freezers; +- j. Furnaces and radiators; +- k. Garbage disposal units; +- l. Hot water heaters, including solar water heaters; +- m. Light fixtures; +- n. Outdoor antennas and aerials fastened to buildings; +- o. Permanently installed cupboards, bookcases, cabinets, paneling, and wallpaper; +- p. Plumbing fixtures; +- q. Pumps and machinery for operating pumps; +- r. Ranges, cooking stoves, and ovens; +- s. Refrigerators; and +- t. Wall mirrors, permanently installed. +8. Items of property below the lowest elevated floor of an elevated postFIRM building located in Zones + +## A1-A30, AE, AH, AR, AR/A, AR/ AE, AR/AH, AR/A1-A30, V1-V30, or VE, or in a basement regardless of the zone. Coverage is limited to the following: + +- a. Any of the following items, if installed in their functioning locations and, if necessary for operation, connected to a power source: +- (1) Central air conditioners; +- (2) Cisterns and the water in them; +- (3) Drywall for walls and ceilings in a basement and the cost of labor to nail it, unfinished and unfloated and not taped, to the framing; +- (4) Electrical junction and circuit breaker boxes; +- (5) Electrical outlets and switches; +- (6) Elevators, dumbwaiters and related equipment, except for related equipment installed below the base flood elevation after September 30, 1987; +- (7) Fuel tanks and the fuel in them; +- (8) Furnaces and hot water heaters; +- (9) Heat pumps; +- (10) Nonflammable insulation in a basement; +- (11) Pumps and tanks used in solar energy systems; +- (12) Stairways and staircases attached to the building, not separated from it by elevated walkways; +- (13) Sump pumps; +- (14) Water softeners and the chemicals in them, water filters, and faucets installed as an integral part of the plumbing system; +- (15) Well water tanks and pumps; +- (16) Required utility connections for any item in this list; and +- (17) Footings, foundations, posts, pilings, piers, or other foundation walls and anchorage systems required to support a building. +- b. Clean-up. + +## B. Coverage B-Personal Property + +1. If you have purchased personal property coverage, we insure against direct physical loss by or from flood to personal property inside a building at the described location, if: +- a. The property is owned by you or your household family members; and +- b. At your option, the property is owned by guests or servants. +2. Personal property is also insured for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety. +3. Personal property in a building that is not fully enclosed must be secured to prevent flotation out of the building. If the personal property does float out during a flood, it will be conclusively presumed that it was not reasonably secured. In that case, there is no coverage for such property. +4. Coverage for personal property includes the following property, subject to B.1 above, which is insured under Coverage B only: +- a. Air conditioning units, portable or window type; +- b. Carpets, not permanently installed, over unfinished flooring; +- c. Carpets over finished flooring; +- d. Clothes washers and dryers; +- e. 'Cook-out' grills; +- f. Food freezers, other than walk-in, and food in any freezer; and +- g. Portable microwave ovens and portable dishwashers. + +## 5. Coverage for items of property below the lowest elevated floor of an elevated post-FIRM building located in Zones A1-A30, AE, AH, AR, AR/A, AR/AE, AR/AH, AR/ A1-A30, V1-V30, or VE, or in a basement regardless of the zone, is limited to the following items, if installed in their functioning locations and, if necessary for oper ation, connected to a power source: + +- a. Air conditioning units, portable or window type; +- b. Clothes washers and dryers; and +- c. Food freezers, other than walk-in, and food in any freezer. +6. If you are a tenant and have insured personal property under Coverage B in this policy, we will cover such property, including your cooking stove or range and refrigerator. The policy will also cover improvements made or acquired solely at your expense in the dwelling or apartment in which you reside, but for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability. +7. If you are the owner of a unit and have insured personal property under Coverage B in this policy, we will also cover your interior walls, floor, and ceiling (not otherwise insured under a flood insurance policy purchased by your condominium association) for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability. +8. Special Limits. We will pay no more than $2,500 for any one loss to one or more of the following kinds of personal property: +- a. Artwork, photographs, collectibles, or memorabilia, including but not limited to, porcelain or other figures, and sports cards; +- b. Rare books or autographed items; +- c. Jewelry, watches, precious and semi-precious stones, or articles of gold, silver, or platinum; +- d. Furs or any article containing fur that represents its principal value; or +- e. Personal property used in any business. + +## 9. We will pay only for the functional value of antiques. + +## C. Coverage C-Other Coverages + +1. Debris Removal +- a. We will pay the expense to remove non-owned debris that is on or in insured property and debris of insured property anywhere. +- b. If you or a member of your household perform the removal work, the value of your work will be based on the Federal minimum wage. +- c. This coverage does not increase the Coverage A or Coverage B limit of liability. +2. Loss Avoidance Measures +- a. Sandbags, Supplies, and Labor +- (1) We will pay up to $1,000 for costs you incur to protect the insured building from a flood or imminent danger of flood, for the following: +8. (a) Your reasonable expenses to buy: +9. (i) Sandbags, including sand to fill them; +10. (ii) Fill for temporary levees; +11. (iii) Pumps; and +12. (iv) Plastic sheeting and lumber used in connection with these items. +13. (b) The value of work, at the Federal minimum wage, that you or a member of your house-hold perform. +- (2) This coverage for Sandbags, Supplies, and Labor only applies if damage to insured property by or from flood is imminent and the threat of flood damage is apparent enough to lead a person of common prudence to anticipate flood damage. One of the following must also occur: +15. (a) A general and temporary condition of flooding in the area near the described + +location must occur, even if the flood does not reach the building; or + +- (b) A legally authorized official must issue an evacuation order or other civil order for the community in which the building is located calling for measures to preserve life and property from the peril of flood. + +This coverage does not increase the Coverage A or Coverage B limit of liability. + +- b. Property Removed to Safety +- (1) We will pay up to $1,000 for the reasonable expenses you incur to move insured property to a place other than the described location that contains the property in order to protect it from flood or the imminent danger of flood. Reasonable expenses include the value of work, at the Federal minimum wage, you or a member of your household perform. +- (2) If you move insured property to a location other than the described location that contains the property in order to protect it from flood or the imminent danger of flood, we will cover such property while at that location for a period of 45 consecutive days from the date you begin to move it there. The personal property that is moved must be placed in a fully enclosed building or otherwise reasonably protected from the elements. +- (3) Any property removed, including a moveable home described in II.6.b and c, must be placed above ground level or outside of the special flood hazard area. +- (4) This coverage does not increase the Coverage A or Coverage B limit of liability. +3. Condominium Loss Assessments +- a. Subject to III.C.3.b below, if this policy insures a condominium unit, we will pay, up to the Coverage A limit of liability, your share of loss assessments charged against you by the condominium association in accordance with the condominium association's articles of association, declarations and your deed. The assessment must be made because of direct physical loss by or from flood during the policy term, to the unit or to the common elements of the NFIP insured condominium building in which this unit is located. +- b. We will not pay any loss assessment: +- (1) Charged against you and the condominium association by any governmental body; +- (2) That results from a deductible under the insurance purchased by the condominium association insuring common elements; +- (3) That results from a loss to personal property, including contents of a condomin ium building; + +## (4) In which the total payment combined under all policies exceeds the maximum amount of coverage available under the Act for a single unit in a condominium building where the unit is insured under both a Dwelling Policy and a RCBAP; or + +- (5) On any item of damage that has already been paid under a RCBAP where a single unit in a condominium building is insured by both a Dwelling Policy and a RCBAP. +- c. Condominium Loss Assessment coverage does not increase the Coverage A Limit of Liability and is subject to the maximum coverage limits available for a single-family dwelling under the Act, payable between all + +policies issued and covering the unit, under the Act. + +## D. Coverage D-Increased Cost of Compliance + +## 1. General + +This policy pays you to comply with a State or local floodplain management law or ordinance affecting repair or reconstruction of a building suffering flood damage. Compliance activities eligible for payment are: elevation, floodproofing, relocation, or demolition (or any combination of these activities) of your building. Eligible floodproofing activities are limited to: + +- a. Non-residential buildings. +- b. Residential buildings with basements that satisfy FEMA's standards published in the Code of Federal Regulations [44 CFR 60.6(b) or (c)]. + +## 2. Limit of Liability + +We will pay you up to $30,000 under this Coverage D-Increased Cost of Compliance, which only applies to policies with building coverage (Coverage A). Our payment of claims under Coverage D is in addition to the amount of coverage which you selected on the application and which appears on the Declarations Page. But the maximum you can collect under this policy for both Coverage A-Building Property and Coverage D-Increased Cost of Compliance cannot exceed the maximum permitted under the Act. We do not charge a separate deductible for a claim under Coverage D. + +## 3. Eligibility + +- a. A building insured under Coverage ABuilding Property sustaining a loss caused by a flood as defined by this policy must: +- (1) Be a 'repetitive loss building.' A repetitive loss building is one that meets the following conditions: +3. (a) The building is insured by a contract of flood insurance issued under the NFIP. +4. (b) The building has suffered flood damage on two occasions during a 10-year period which ends on the date of the second loss. +5. (c) The cost to repair the flood damage, on average, equaled or exceeded 25 percent of the market value of the building at the time of each flood loss. +6. (d) In addition to the current claim, the NFIP must have paid the previous qualifying claim, and the State or community must have a cumulative, substantial damage provision or repetitive loss provision in its floodplain management law or ordinance being enforced against the building; or +- (2) Be a building that has had flood damage in which the cost to repair equals or exceeds 50 percent of the market value of the building at the time of the flood. The State or community must have a substantial damage provision in its floodplain management law or ordinance being enforced against the building. +- b. This Coverage D pays you to comply with State or local floodplain management laws or ordinances that meet the minimum standards of the National Flood Insurance Program found in the Code of Federal Regulations at 44 CFR 60.3. We pay for compliance activities that exceed those standards under these conditions: +- (1) 3.a.1 above. +- (2) Elevation or floodproofing in any risk zone to preliminary or advisory base flood elevations provided by FEMA which the State or local government has adopted and is enforcing for flooddamaged buildings in such areas. (This includes compliance activities in B, C, X, or D zones which are being changed to zones with base flood elevations. This also includes compliance activities in zones where base flood elevations are being increased, and a flood-damaged building must comply with the higher advisory base flood elevation.) Increased Cost of Compliance coverage does not apply to situations in B, C, X, or D zones where the community has derived its own elevations and is enforcing elevation or floodproofing requirements for flooddamaged buildings to elevations derived solely by the community. +- (3) Elevation or floodproofing above the base flood elevation to meet State or local 'free-board' requirements, i.e., that a building must be elevated above the base flood elevation. + +- c. Under the minimum NFIP criteria at 44 CFR 60.3(b)(4), States and communities must require the elevation or floodproofing of buildings in unnumbered A zones to the base flood elevation where elevation data is obtained from a Federal, State, or other source. Such compliance activities are eligible for Coverage D. +- d. Coverage D will pay for the incremental cost, after demolition or relocation, of elevating or floodproofing a building during its rebuilding at the same or another site to meet State or local floodplain management laws or ordinances, subject to Coverage D Exclusion 5.g below. +- e. Coverage D will pay to bring a flood-damaged building into compliance with State or local floodplain management laws or ordinances even if the building had received a variance before the present loss from the applicable floodplain management requirements. + +## 4. Conditions + +- a. When a building insured under Coverage A-Building Property sustains a loss caused by a flood, our payment for the loss under this Coverage D will be for the increased cost to elevate, floodproof, relocate, or demolish (or any combination of these activities) caused by the enforcement of current State or local floodplain management ordinances or laws. Our payment for eligible demolition activities will be for the cost to demolish and clear the site of the building debris or a portion thereof caused by the enforcement of current State or local floodplain management + +ordinances or laws. Eligible activities for the cost of clearing the site will include those necessary to discontinue utility service to the site and ensure proper abandonment of on-site utilities. + +- b. When the building is repaired or rebuilt, it must be intended for the same occupancy as the present building unless otherwise required by current floodplain management ordinances or laws. + +## 5. Exclusions + +Under this Coverage D (Increased Cost of Compliance), we will not pay for: + +- a. The cost to comply with any flood plain management law or ordinance in communities participating in the Emergency Program. +- b. The cost associated with enforcement of any ordinance or law that requires any insured or others to test for, monitor, clean up, remove, contain, treat, detoxify or neutralize, or in any way respond to, or assess the effects of pollutants. +- c. The loss in value to any insured building due to the + +- requirements of any ordinance or law. +- d. The loss in residual value of the undamaged portion of a building demolished as a consequence of enforcement of any State or local flood plain management law or ordinance. +- e. Any Increased Cost of Compliance under this Coverage D: +- (1) Until the building is elevated, floodproofed, demolished, or relocated on the same or to another premises; and +- (2) Unless the building is elevated, floodproofed, demolished, or relocated as soon as reasonably possible after the loss, not to exceed two years. +- f. Any code upgrade requirements, e.g., plumbing or electrical wiring, not specifically related to the State or local floodplain management law or ordinance. +- g. Any compliance activities needed to bring additions or improvements made after the loss occurred into compliance with State or local flood plain management laws or ordinances. +- h. Loss due to any ordinance or law that you were required to comply with before the current loss. +- i. Any rebuilding activity to standards that do not meet the NFIP's minimum requirements. This includes any situation where the insured has received from the State or community a variance in connection with the current flood loss to rebuild the property to an elevation below the base flood elevation. +- j. Increased Cost of Compliance for a garage or carport. +- k. Any building insured under an NFIP Group Flood Insurance Policy. +- l. Assessments made by a condo minium association on individual condominium unit owners to pay increased costs of repairing commonly owned buildings after a flood in compliance with State or local floodplain management ordinances or laws. +6. Other Provisions +- a. Increased Cost of Compliance coverage will not be included in the calculation to determine whether coverage meets the 80 percent insurance-to-value requirement for replacement cost coverage as set forth in Art. VII.R ('Loss Settlement') of this policy. +- b. All other conditions and provisions of this policy apply. + +## We do not insure any of the following: + +1. Personal property not inside a building. +2. A building, and personal property in it, located entirely in, on, or over water or seaward of mean high tide if it was constructed or substantially improved after September 30, 1982. +3. Open structures, including a building used as a boathouse or any structure or building into which boats are floated, and personal property located in, on, or over water. +4. Recreational vehicles other than travel trailers described in the Definitions section (see II.C.6.c) whether affixed to a permanent foundation or on wheels. +5. Self-propelled vehicles or machines, including their parts and equipment. However, we do cover self-propelled vehicles or machines not licensed for use on public roads that are: +- a. Used mainly to service the described location; or +- b. Designed and used to assist handicapped persons, while the vehicles or machines +8. are inside a building at the described location. +6. Land, land values, lawns, trees, shrubs, plants, growing crops, or animals. +7. Accounts, bills, coins, currency, deeds, evidences of debt, medals, money, scrip, stored value cards, postage stamps, securities, bullion, manuscripts, or other valuable papers. +8. Underground structures and equip ment, including wells, septic tanks, and septic systems. +9. Those portions of walks, walkways, decks, driveways, patios and other surfaces, all whether protected by a roof or not, located outside the perimeter, exterior walls of the insured building or the building in which the insured unit is located. +10. Containers, including related equipment, such as, but not limited to, tanks containing gases or liquids. +11. Buildings or units and all their contents if more than 49 percent of the actual cash value of the building is below ground, unless the lowest level is at or above the base flood elevation and is below + +- ground by reason of earth having been used as insulation material in conjunction with energy efficient building techniques. +12. Fences, retaining walls, seawalls, bulkheads, wharves, piers, bridges, and docks. +13. Aircraft or watercraft, or their furnishings and equipment. + +filters, pumps, and pipes, wherever located. + +15. Property not eligible for flood insurance pursuant to the provisions of the Coastal Barrier Resources Act and the Coastal Barrier Improvement Act and amendments to these acts. +14. Hot tubs and spas that are not bathroom fixtures, and swimming pools, and their equipment, such as, but not limited to, heaters, +16. Personal property you own in common with other unit owners comprising the membership of a condominium association. + +## V. EXCLUSIONS + +A. We only pay for direct physical loss by or from flood, which means that we do not pay you for: + +1. Loss of revenue or profits; +2. Loss of access to the insured property or described location; +3. Loss of use of the insured property or described location; +4. Loss from interruption of business or production; +5. Any additional living expenses incurred while the insured building is being repaired or is unable to be occupied for any reason; +6. The cost of complying with any ordinance or law requiring or + +regulating the construction, demolition, remodeling, renovation, or repair of property, including removal of any resulting debris. This exclusion does not apply to any eligible activities we describe in Coverage D-Increased Cost of Compliance; or + +7. Any other economic loss you suffer. + +B. Flood in Progress. If this policy became effective as of the time of a loan closing, as provided by 44 CFR 61.11(b), we will not pay for a loss caused by a flood that is a continuation of a flood that existed prior to coverage becoming effective. + +In all other circumstances, we will not pay for a loss caused by a flood that is a continuation of a flood that existed on or before the day you submitted the application for coverage under this policy and the full amount due. We will determine the date of application using 44 CFR 61.11(f). + +C. We do not insure for loss to property caused directly by earth movement even if the earth movement is caused by flood. Some examples of earth movement that we do not cover are: + +1. Earthquake; +2. Landslide; +3. Land subsidence; +4. Sinkholes; +5. Destabilization or movement of land that results from accumulation of water in subsurface land area; or +6. Gradual erosion. + +We do, however, pay for losses from mudflow and land subsidence as a result of erosion that are specifically insured under our definition of flood (see II.B.1.c and II.B.2). + +D. We do not insure for direct physical loss caused directly or indirectly by any of the following: + +1. The pressure or weight of ice; +2. Freezing or thawing; +3. Rain, snow, sleet, hail, or water spray; +4. Water, moisture, mildew, or mold damage that results primarily from any condition: +- a. Substantially confined to the dwelling; or +- b. That is within your control, including but not limited to: +- (1) Design, structural, or mechanical defects; +- (2) Failure, stoppage, or breakage of water or sewer lines, drains, pumps, fixtures, or equipment; or +- (3) Failure to inspect and maintain the property after a flood recedes; +5. Water or water-borne material that: +- a. Backs up through sewers or drains; +- b. Discharges or overflows from a sump, sump pump, or related equipment; or +- c. Seeps or leaks on or through the insured property; + +unless there is a flood in the area and the flood is the proximate cause of the sewer or drain backup, sump pump discharge or overflow, or the seepage of water; + +6. The pressure or weight of water unless there is a flood in the area and the flood is the proximate cause of the damage from the pressure or weight of water; +7. Power, heating, or cooling failure unless the failure results from direct physical loss by or from flood to power, heating, or cooling equipment on the described location; +8. Theft, fire, explosion, wind, or windstorm; +9. Anything you or any member of your household do or conspire + +to do to deliberately cause loss by flood; or + +10. Alteration of the insured property that significantly increases the risk of flooding. + +E. We do not insure for loss to any building or personal property located on land leased from the Federal Government, arising from or incident to the flooding of the land by the Federal Government, where the lease expressly holds the Federal Government harmless under flood insurance issued under any Federal Government program. + +F. We do not pay for the testing for or monitoring of pollutants unless required by law or ordinance. + +## VI. DEDUCTIBLES + +A. When a loss is insured under this policy, we will pay only that part of the loss that exceeds your deductible amount, subject to the limit of liability that applies. The deductible amount is shown on the Declarations Page. + +B. In each loss from flood, separate deductibles apply to the building and personal property insured by this policy. + +- C. The deductible does NOT apply to: +1. III.C.2. Loss Avoidance Measures; +2. III.C.3. Condominium Loss Assessments; or +3. III.D. Increased Cost of Compliance. + +However, when a building under construction, alteration, or repair does not have at least two rigid exterior walls and a fully secured roof at the time of loss, your deductible amount will be two times the deductible that would otherwise apply to a completed building. + +## A. Pair and Set Clause + +In case of loss to an article that is part of a pair or set, we will have the option of paying you: + +1. An amount equal to the cost of replacing the lost, damaged, or destroyed article, minus its depreciation; or +2. The amount that represents the fair proportion of the total value of the pair or set that the lost, damaged, or destroyed article bears to the pair or set. + +## B. Other Insurance + +1. If a loss insured by this policy is also insured by other insurance that includes flood coverage not issued under the Act, we will not pay more than the amount of insurance you are entitled to for lost, damaged, or destroyed property insured under this policy subject to the following: +- a. We will pay only the proportion of the loss that the amount of insurance that applies under this policy bears to the total amount of insurance covering the loss, unless VII.B.1.b or c immediately below applies. +- b. If the other policy has a provision stating that it is excess insurance, this policy will be primary. +- c. This policy will be primary (but subject to its own deductible) + +up to the deductible in the other flood policy (except another policy as described in VII.B.1.b above). When the other deductible amount is reached, this policy will participate in the same proportion that the amount of insurance under this policy bears to the total amount of both policies, for the remainder of the loss. + +2. If there is other insurance issued under the Act in the name of your condominium association covering the same property insured by this policy, then this policy will be in excess over the other insurance, except where a condominium loss assessment to the unit owner results from a loss sustained by the condominium association that was not reimbursed under a flood insurance policy written in the name of the association under the Act because the building was not, at the time of loss, insured for an amount equal to the lesser of: +- a. 80 percent or more of its full replacement cost; or + +- b. The maximum amount of insurance permitted under the Act. +3. The combined coverage payment under the other NFIP insurance and this policy cannot exceed the maximum coverage available under the Act, of $250,000 per single unit. + +## C. Amendments, Waivers, Assignment + +This policy cannot be changed, nor can any of its provisions be waived, without the express written consent of the Federal Insurance Administrator. No action we take under the terms of this policy constitutes a waiver of any of our rights. You may assign this policy in writing when you transfer title of your property to someone else except under these conditions: + +- a. When this policy insures only personal property; or +- b. When this policy insures a building under construction. +- D. Insufficient Premium or Rating Information +1. Applicability. The following provisions apply to all instances where the premium paid on this policy is insufficient or where the rating information is insufficient, such as where an Elevation Certificate is not provided. +2. Reforming the Policy with Re­ duced Coverage. Except as otherwise provided in VII.D.1, if the premium we received from you was not sufficient to buy the kinds and amounts of coverage you requested, we will provide only the kinds and + +amounts of coverage that can be purchased for the premium payment we received. + +- a. For the purpose of determining whether your premium payment is sufficient to buy the kinds and amounts of coverage you requested, we will first deduct the costs of all applicable fees and surcharges. +- b. If the amount paid, after deducting the costs of all applicable fees and surcharges, is not sufficient to buy any amount of coverage, your payment will be refunded. Unless the policy is reformed to increase the coverage amount to the amount originally requested pursuant to VII.D.3, this policy will be cancelled, and no claims will be paid under this policy. +- c. Coverage limits on the reformed policy will be based upon the amount of premium submitted per type of coverage, but will not exceed the amount originally requested. +3. Discovery of Insufficient Premium or Rating Information. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, the policy will + +be reformed as described in VII.D.2. You have the option of increasing the amount of coverage resulting from this reformation to the amount you requested as follows: + +- a. Insufficient Premium. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, we will send you, and any mortgagee or trustee known to us, a bill for the required additional premium for the current policy term (or that portion of the current policy term following any endorsement changing the amount of coverage). If it is discovered that the initial amount charged to you for any fees or surcharges is incorrect, the difference will be added or deducted, as applicable, to the total amount in this bill. +- (1) If you or the mortgagee or trustee pays the additional premium amount due within 30 days from the date of our bill, we will reform the policy to increase the amount of coverage to the originally requested amount, effective to the beginning + +of the current policy term (or subsequent date of any endorsement changing the amount of coverage). + +- (2) If you or the mortgagee or trustee do not pay the additional amount due within 30 days of the date of our bill, any flood insurance claim will be settled based on the reduced amount of coverage. +- (3) As applicable, you have the option of paying all or part of the amount due out of a claim payment based on the originally requested amount of coverage. +- b. Insufficient Rating Inform­ ation. If we determine that the rating information we have is insufficient and prevents us from calculating the additional premium, we will ask you to send the required information. You must submit the information within 60 days of our request. +- (1) If we receive the information within 60 days of our request, we will determine the amount of additional premium for the current + +policy term, and follow the procedure in VII.D.3.a above. + +- (2) If we do not receive the information within 60 days of our request, no claims will be paid until the requested information is provided. Coverage will be limited to the amount of coverage that can be purchased for the payments we received, as determined when the requested information is provided. +4. Coverage Increases. If we do not receive the amounts requested in VII.D.3.a or the additional information requested in VII.D.3.b by the date it is due, the amount of coverage under this policy can only be increased by endorsement subject to the appropriate waiting period. However, no coverage increases will be allowed until you have provided the information requested in VII.D.3.b. +5. Falsifying Information. However, if we find that you or your agent intentionally did not tell us, or falsified any important fact or circumstance or did anything fraudulent relating to this insurance, the provisions of VIII.A apply. + +## E. Policy Renewal + +1. This policy will expire at 12:01 a.m. on the last day of the policy term. +2. We must receive the payment of the appropriate renewal premium within 30 days of the expiration date. +3. If we find, however, that we did not place your renewal notice into the U.S. Postal Service, or if we did mail it, we made a mistake, e.g., we used an incorrect, incomplete, or illegible address, which delayed its delivery to you before the due date for the renewal premium, then we will follow these procedures: +- a. If you or your agent notified us, not later than one year after the date on which the payment of the renewal premium was due, of non-receipt of a renewal notice before the due date for the renewal premium, and we determine that the circumstances in the preceding paragraph apply, we will mail a second bill providing a revised due date, which will be 30 days after the date on which the bill is mailed. +- b. If we do not receive the premium requested in the second bill by the revised due date, then we will not renew the policy. In that case, the policy will remain an expired policy as of the expiration date shown on the Declarations Page. +4. In connection with the renewal of this policy, we may ask you during the policy term to recertify, on a Recertification Questionnaire we will provide to you, the rating information used to rate your most recent application for or renewal of insurance. +- F. Conditions Suspending or Restricting Insurance + +We are not liable for loss that occurs while there is a hazard that is increased by any means within your control or knowledge. + +- G. Requirements in Case of Loss + +In case of a flood loss to insured property, you must: + +1. Give prompt written notice to us. +2. As soon as reasonably possible, separate the damaged and + +undamaged property, putting it in the best possible order so that we may examine it. + +3. Prepare an inventory of damaged property showing the quantity, description, actual cash value, and amount of loss. Attach all bills, receipts, and related documents. +4. Within 60 days after the loss, send us a proof of loss, which is your statement of the amount you are claiming under the policy signed and sworn to by you, and which furnishes us with the following information: +- a. The date and time of loss; +- b. A brief explanation of how the loss happened; +- c. Your interest (for example, 'owner') and the interest, if any, of others in the damaged property; +- d. Details of any other insurance that may cover the loss; +- e. Changes in title or occupancy of the insured property during the term of the policy; +- f. Specifications of damaged buildings and detailed repair estimates; +- g. Names of mortgagees or anyone else having a lien, + +charge, or claim against the insured property; + +- h. Details about who occupied any insured building at the time of loss and for what purpose; and +- i. The inventory of damaged personal property described in G.3 above. +5. In completing the proof of loss, you must use your own judgment concerning the amount of loss and justify that amount. +6. You must cooperate with the adjuster or representative in the investigation of the claim. +7. The insurance adjuster whom we hire to investigate your claim may furnish you with a proof of loss form, and she or he may help you complete it. However, this is a matter of courtesy only, and you must still send us a proof of loss within 60 days after the loss even if the adjuster does not furnish the form or help you complete it. +8. We have not authorized the adjuster to approve or disapprove claims or to tell you whether we will approve your claim. +9. At our option, we may accept the adjuster's report of the loss instead of your proof of loss. The adjuster's report will include information about your loss and the damages you sustained. You must sign the adjuster's report. At our option, we may require you to swear to the report. + +H. Our Options After a Loss + +Options we may, in our sole discretion, exercise after loss include the following: + +1. At such reasonable times and places that we may designate, you must: +- a. Show us or our representative the damaged property; +- b. Submit to examination under oath, while not in the presence of another insured, and sign the same; and +- c. Permit us to examine and make extracts and copies of: +- (1) Any policies of property insurance insuring you against loss and the deed establishing your ownership of the insured real property; +- (2) Condominium association documents including the Declarations of the condominium, its Articles of Association or Incorporation, Bylaws, rules and regulations, and other relevant documents if you are a unit owner in a condominium building; and +- (3) All books of accounts, bills, invoices and other vouchers, or certified copies pertaining to the damaged property if the originals are lost. +2. We may request, in writing, that you furnish us with a complete + +inventory of the lost, damaged or destroyed property, including: + +- a. Quantities and costs; +- b. Actual cash values or replacement cost (whichever is appropriate); +- c. Amounts of loss claimed; +- d. Any written plans and specifications for repair of the damaged property that you can reasonably make available to us; and +- e. Evidence that prior flood damage has been repaired. +3. If we give you written notice within 30 days after we receive your signed, sworn proof of loss, we may: +- a. Repair, rebuild, or replace any part of the lost, damaged, or destroyed property with material or property of like kind and quality or its functional equivalent; and +- b. Take all or any part of the damaged property at the value that we agree upon or its appraised value. +- I. No Benefit to Bailee + +No person or organization, other than you, having custody of insured property will benefit from this insurance. + +## J. Loss Payment + +1. We will adjust all losses with you. We will pay you unless some other person or entity is named in the policy or is legally entitled to receive payment. Loss will be payable 60 days after we receive your proof of loss (or within 90 days after the insurance adjuster files the adjuster's report signed and sworn to by you in lieu of a proof of loss) and: +- a. We reach an agreement with you; +- b. There is an entry of a final judgment; or +- c. There is a filing of an appraisal award with us, as provided in VII.M. +2. If we reject your proof of loss in whole or in part you may: +- a. Accept our denial of your claim; +- b. Exercise your rights under this policy; or +- c. File an amended proof of loss as long as it is filed within 60 days of the date of the loss. + +## K. Abandonment + +You may not abandon to us damaged or undamaged property insured under this policy. + +## L. Salvage + +We may permit you to keep damaged property insured under this policy after a loss, and we will reduce the amount of the loss proceeds payable to you under the policy by the value of the salvage. + +## M. Appraisal + +If you and we fail to agree on the actual cash value or, if applicable, replacement cost of your damaged property to settle upon the amount of loss, then either may demand an appraisal of the loss. In this event, you and we will each choose a competent and impartial appraiser within 20 days after receiving a written request from the other. The two appraisers will choose an umpire. If they cannot agree upon an umpire within 15 days, you or we may request that the choice be made by a judge of a court of record in the state where the insured property is located. The appraisers will separately state the actual cash value, the replacement cost, and the amount of loss to each item. If the appraisers submit a written report of an agreement to us, the amount agreed upon will be the amount of loss. If they fail to agree, they will submit their differences to the umpire. A decision agreed to by any two will set the amount of actual cash value and loss, or if it applies, the replacement cost and loss. + +## Each party will: + +1. Pay its own appraiser; and +2. Bear the other expenses of the appraisal and umpire equally. + +## N. Mortgage Clause + +## 1. The word 'mortgagee' includes trustee. + +2. Any loss payable under Coverage A-Building Property will be paid to any mortgagee of whom we have actual notice, as well as any other mortgagee or loss payee determined to exist at the time of loss, and you, as interests appear. If more than one mortgagee is named, the order of payment will be the same as the order of precedence of the mortgages. +3. If we deny your claim, that denial will not apply to a valid claim of the mortgagee, if the mortgagee: +- a. Notifies us of any change in the ownership or occupancy, or substantial change in risk of which the mortgagee is aware; +- b. Pays any premium due under this policy on demand if you have neglected to pay the premium; and +- c. Submits a signed, sworn proof of loss within 60 days after receiving notice from us of your failure to do so. + +4. All of the terms of this policy apply to the mortgagee. +5. The mortgagee has the right to receive loss payment even if the mortgagee has started foreclosure or similar action on the building. +6. If we decide to cancel or not renew this policy, it will continue in effect for the benefit of the mortgagee only for 30 days after we notify the mortgagee of the cancellation or non-renewal. +7. If we pay the mortgagee for any loss and deny payment to you, we are subrogated to all the rights of the mortgagee granted under the mortgage on the property. Subrogation will not impair the right of the mortgagee to recover the full amount of the mortgagee's claim. +- O. Suit Against Us + +You may not sue us to recover money under this policy unless you have complied with all the requirements of the policy. If you do sue, you must start the suit within one year after the date of the written denial of all or part of the claim, and you must file the suit in the United States District Court of the district in which the insured property was located at the time of loss. This requirement applies to any claim that you may have under this policy and to any dispute that you may have arising out of the handling of any claim under the policy. + +- P. Subrogation + +Whenever we make a payment for a loss under this policy, we are subrogated to your right to recover for that loss from any other person. That means that your right to recover for a loss that was partly or totally caused by someone else is automatically transferred to us, to the extent that we have paid you for the loss. We may require + +you to acknowledge this transfer in writing. After the loss, you may not give up our right to recover this money or do anything that would prevent us from recovering it. If you make any claim against any person who caused your loss and recover any money, you must pay us back first before you may keep any of that money. + +- Q. Continuous Lake Flooding +1. If an insured building has been flooded by rising lake waters continuously for 90 days or more and it appears reasonably certain that a continuation of this flooding will result in an insured loss to the insured building equal to or greater than the building policy limits plus the deductible or the maximum payable under the policy for any one building loss, we will pay you the lesser of these two amounts without waiting for the further + +damage to occur if you sign a release agreeing: + +- a. To make no further claim under this policy; +- b. Not to seek renewal of this policy; +- c. Not to apply for any flood insurance under the Act for property at the described location; +- d. Not to seek a premium refund for current or prior terms. + +If the policy term ends before the insured building has been flooded continuously for 90 days, the provisions of this paragraph Q.1 will apply when the insured building suffers a covered loss before the policy term ends. + +2. If your insured building is subject to continuous lake flooding from a closed basin lake, you may elect to file a claim under either paragraph Q.1 above or Q.2 (A 'closed basin lake' is a natural lake from which water leaves primarily through evaporation and whose surface area now exceeds or has exceeded one square mile at any time in the recorded past. Most of the nation's closed basin lakes are in the western half of the United + +States where annual evaporation exceeds annual precipitation and where lake levels and surface areas are subject to considerable fluctuation due to wide variations in the climate. These lakes may overtop their basins on rare occasions.) Under this paragraph Q.2, we will pay your claim as if the building is a total loss even though it has not been continuously inundated for 90 days, subject to the following conditions: + +- a. Lake floodwaters must damage or imminently threaten to damage your building. +- b. Before approval of your claim, you must: +- (1) Agree to a claim payment that reflects your buying back the salvage on a negotiated basis; and +- (2) Grant the conservation easement described in FEMA's 'Policy Guidance for Closed Basin Lakes' to be recorded in the office of the local recorder of deeds. FEMA, in consultation with the community in which the property is located, will identify on a map an area or areas + +of special consideration (ASC) in which there is a potential for flood damage from continuous lake flooding. FEMA will give the community the agreedupon map showing the ASC. This easement will only apply to that portion of the property in the ASC. It will allow certain agricultural and recreational uses of the land. The only structures it will allow on any portion of the property within the ASC are certain simple agricultural and recreational structures. If any of these allowable structures are insurable buildings under the NFIP and are insured under the NFIP, they will not be eligible for the benefits of this paragraph Q.2. If a U.S. Army Corps of Engineers certified flood control project or otherwise certified flood control project later protects the property, FEMA will, upon request, amend the ASC to remove areas protected by those projects. The restrictions of the easement will then no longer apply to any portion of the + +- property removed from the ASC; and +- (3) Comply with paragraphs Q.1.a through Q.1.d above. +- c. Within 90 days of approval of your claim, you must move your building to a new location outside the ASC. FEMA will give you an additional 30 days to move if you show there is sufficient reason to extend the time. +- d. Before the final payment of your claim, you must acquire an elevation certificate and a floodplain development permit from the local floodplain administrator for the new location of your building. +- e. Before the approval of your claim, the community having jurisdiction over your building must: +- (1) Adopt a permanent land use ordinance, or a temporary moratorium for a period not to exceed 6 months to be followed immediately by a permanent land use ordinance that is consistent with the provisions specified in the easement required in paragraph Q.2.b above; + +- (2) Agree to declare and report any violations of this ordinance to FEMA so that under Section 1316 of the National Flood Insurance Act of 1968, as amended, flood insurance to the building can be denied; and +- (3) Agree to maintain as deedrestricted, for purposes compatible with open space or agricultural or recreational use only, any affected property the community acquires an interest in. These deed restrictions must be consistent with the provisions of paragraph Q.2.b above, except that, even if a certified project protects the property, the land use restrictions continue to apply if the property was acquired under the Hazard Mitigation Grant Program or the Flood Mitigation Assistance Program. If a non-profit land trust organization receives the property as a donation, that organization must maintain the property as deed-restricted, consistent +3. with the provisions of paragraph Q2.b above. +- f. Before the approval of your claim, the affected State must take all action set forth in FEMA's 'Policy Guidance for Closed Basin Lakes.' +- g. You must have NFIP flood insurance coverage con tinuously in effect from a date established by FEMA until you file a claim under paragraph Q.2. If a subsequent owner buys NFIP insurance that goes into effect within 60 days of the date of transfer of title, any gap in coverage during that 60-day period will not be a violation of this continuous coverage requirement. For the purpose of honoring a claim under this paragraph Q.2, we will not consider to be in effect any increased coverage that became effective after the date established by FEMA. The exception to this is any increased coverage in the amount suggested by your insurer as an inflation adjustment. +- h. This paragraph Q.2 will be in effect for a community when the FEMA Regional Administrator for the affected region provides + +## to the community, in writing, the following: + +- (1) Confirmation that the community and the State are in compliance with the conditions in paragraphs Q.2.e and Q.2.f above; and + +## (2) The date by which you must have flood insurance in effect. + +## R. Loss Settlement + +1. Introduction + +This policy provides three methods of settling losses: Replacement Cost, Special Loss Settlement, and Actual Cash Value. Each method is used for a different type of property, as explained in paragraphs a-c below. + +- a. Replacement Cost Loss Set tlement , described in R.2 below, applies to a singlefamily dwelling provided: + +## (1) It is your principal residence; and + +- (2) At the time of loss, the amount of insurance in this policy that applies to the dwelling is 80 percent or more of its full replacement cost immediately before the loss, or is the maximum amount of insurance available under the NFIP. +- b. Special Loss Settlement , described in R.3 below, applies to a single-family dwelling that is a manufactured or mobile home or a travel trailer. +- c. Actual Cash Value Loss Settlement applies to a single-family dwelling not subject to replacement cost or special loss settlement, and to the property listed in R.4 below. +2. Replacement Cost Loss Settlement + +The following loss settlement conditions apply to a single-family dwelling described in R.1.a above: + +- a. We will pay to repair or replace the damaged dwelling after application of the deductible and without deduction for depreciation, but not more than the least of the following amounts: +- (1) The building limit of liability shown on your Declarations Page; +- (2) The replacement cost of that part of the dwelling damaged, with materials of like kind and quality and for like use; or +- (3) The necessary amount actually spent to repair or replace the damaged part of the dwelling for like use. +- b. If the dwelling is rebuilt at a new location, the cost described above is limited to the cost that would have been incurred if the dwelling had been rebuilt at its former location. +- c. When the full cost of repair or replacement is more than $1,000, or more than 5 percent of the whole amount of insurance that applies to the dwelling, we will not be liable for any loss under R.2.a above or R.4.a.2 below unless and until actual repair or replacement is completed. +- d. You may disregard the replacement cost conditions above and make claim under this policy for loss to dwellings on an actual cash value basis. You may then make claim for any additional liability according to R.2.a, b, and c above, provided you notify us of your intent to do so within 180 days after the date of loss. +- e. If the community in which your dwelling is located has been converted from the Emergency Program to the Regular Program during the current policy term, then we will consider the maximum amount of available NFIP insurance to be the amount that was available at the beginning of the current policy term. +3. Special Loss Settlement +- a. The following loss settlement conditions apply to a single-family dwelling that: +- (1) is a manufactured or mobile home or a travel trailer, as defined in II.C.6.b and c; + +- (2) is at least 16 feet wide when fully assembled and has an area of at least 600 square feet within its perimeter walls when fully assembled; and +- (3) is your principal residence as specified in R.1.a.1 above. +- b. If such a dwelling is totally destroyed or damaged to such an extent that, in our judgment, it is not economically feasible to repair, at least to its pre-damage condition, we will, at our discretion pay the least of the following amounts: +- (1) The lesser of the replacement cost of the dwelling or 1.5 times the actual cash value; or +- (2) The building limit of liability shown on your Declarations Page. +- c. If such a dwelling is partially damaged and, in our judgment, it is economically feasible to repair it to its pre-damage condition, we will settle the loss according to the Replacement Cost conditions in R.2 above. + +## 4. Actual Cash Value Loss Settlement + +The types of property noted below are subject to actual cash value (or in the case of R.4.a.2., below, proportional) loss settlement. + +- a. A dwelling, at the time of loss, when the amount of insurance on the dwelling is both less than 80 percent of its full replacement cost immediately before the loss and less than the maximum amount of insurance available under the NFIP. In that case, we will pay the greater of the following amounts, but not more than the amount of insurance that applies to that dwelling: +- (1) The actual cash value, as defined in II.C.2, of the damaged part of the dwelling; or +- (2) A proportion of the cost to repair or replace the damaged part of the dwelling, without deduction for physical depreciation and after application of the deductible. + +This proportion is determined as follows: If 80 percent of the full replacement cost of the dwelling is less than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the amount of insurance that represents 80 percent of its full replacement cost. But if 80 percent of the full replacement cost of the dwelling is greater than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the maximum amount of insurance available under the NFIP. + +- b. A two-, three-, or four-family dwelling. +- c. A unit that is not used exclusively for singlefamily dwelling purposes. +- d. Detached garages. +- e. Personal property. +- f. Appliances, carpets, and carpet pads. +- g. Outdoor awnings, outdoor antennas or aerials of any type, and other outdoor equipment. +- h. Any property insured under this policy that is abandoned after a loss and remains as debris anywhere on the described location. +- i. A dwelling that is not your principal residence. + +## 5. Amount of Insurance Required + +To determine the amount of insurance required for a dwelling immediately before the loss, we do not include the value of: + +- a. Footings, foundations, piers, or any other structures or devices that are below the undersurface of the lowest basement floor and support all or part of the dwelling; +- b. Those supports listed in R.5.a above, that are below the surface of the ground inside the foundation walls if there is no basement; and +- c. Excavations and underground flues, pipes, wiring, and drains. + +Note: The Coverage D-Increased Cost of Compliance limit of liability is not included in the determination of the amount of insurance required. + +## VIII. POLICY NULLIFICATION, CANCELLATION, AND NON-RENEWAL + +- A. Policy Nullification for Fraud, Misrepresentation, or Making False Statements +1. With respect to all insureds under this policy, this policy is void and has no legal force and effect if at any time, before or after a loss, you or any other insured or your agent have, with respect to this policy or any other NFIP insurance: +- a. Concealed or misrepresented any material fact or circumstance; +- b. Engaged in fraudulent conduct; or +- c. Made false statements. +2. Policies voided under A.1 cannot be renewed or replaced by a new NFIP policy. +3. Policies are void as of the date the acts described in A.1 above were committed. +4. Fines, civil penalties, and imprisonment under applicable Federal laws may also apply to the acts of fraud or concealment described above. +- B. Policy Nullification for Reasons Other Than Fraud +1. This policy is void from its inception, and has no legal force or effect, if: +- a. The property listed on the application is located in a community that was not participating in the NFIP on this policy's inception date and did not join or reenter the program during the policy term and before the loss occurred; +- b. The property listed on the application is otherwise not eligible for coverage under the NFIP at the time of the initial application; +- c. You never had an insurable interest in the property listed on the application; +- d. You provided an agent with an application and payment, but the payment did not clear; or +- e. We receive notice from you, prior to the policy effective date, that you have determined not to take the policy and you are not subject to a requirement to obtain and maintain flood insurance pursuant to any statute, regulation, or contract. +2. In such cases, you will be entitled to a full refund of all premium, fees, and surcharges received. However, if a claim was paid for a policy that is void, the claim payment must be returned to FEMA or offset from the premiums to be refunded before the refund will be processed. + +## C. Cancellation of the Policy by You + +1. You may cancel this policy in accordance with the terms and conditions of this policy and the applicable rules and regulations of the NFIP. +2. If you cancel this policy, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP. + +## D. Cancellation of the Policy by Us + +1. Cancellation for Underpayment of Amounts Owed on Policy. This policy will be cancelled, pursuant to VII.D.2, if it is determined that the premium amount you paid is not sufficient to buy any amount of coverage, and you do not pay the additional amount of premium owed to increase the coverage to the originally requested amount within the required time period. + +## 2. Cancellation Due to Lack of an Insurable Interest. + +- a. If you no longer have an insurable interest in the insured property, we will cancel this policy. You will cease to have an insurable interest if: +- (1) For building coverage, the building was sold, destroyed, or removed. +- (2) For contents coverage, the contents were sold or transferred ownership, or the contents were + +completely removed from the described location. + +- b. If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the applicable rules and regulations of the NFIP. + +## 3. Cancellation of Duplicate Policies + +- a. Except as allowed under Article I.G, your property may not be insured by more than one NFIP policy, and payment for damages to your property will only be made under one policy. +- b. Except as allowed under Article I.G, if the property is insured by more than one NFIP policy, we will cancel all but one of the policies. The policy, or policies, will be selected for cancellation in accordance with 44 CFR 62.5 and the applicable rules and guidance of the NFIP. +- c. If this policy is cancelled pursuant to VIII.D.4.b, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP. + +## 4. Cancellation Due to Physical Alteration of Property + +- a. If the insured building has been physically altered in such a manner that it is no longer eligible for flood insurance coverage, we will cancel this policy. + +## of this policy and the applicable rules and regulations of the NFIP. + +## E. Non-Renewal of the Policy by Us + +Your policy will not be renewed if: + +1. The community where your insured property is located is suspended or stops participating in the NFIP; +- b. If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the terms and conditions +2. Your building is otherwise ineligible for flood insurance under the Act; +3. You have failed to provide the information we requested for the purpose of rating the policy within the required deadline. + +## IX. LIBERALIZATION CLAUSE + +If we make a change that broadens your coverage under this edition of our policy, but does not require any additional premium, then that change will automatically apply to your insurance as of the date we implement the change, provided that this implementation date falls within 60 days before or during the policy term stated on the Declarations Page. + +## X. WHAT LAW GOVERNS + +This policy and all disputes arising from the insurer's policy issuance, policy administration, or the handling of any claim under the policy are governed exclusively by the flood insurance regulations issued by FEMA, the National Flood Insurance Act of 1968, as amended (42 U.S.C. 4001, et seq.), and Federal common law. + +In Witness Whereof, we have signed this policy below and hereby enter into this Insurance Agreement. + + + +Deputy Associate Administrator Federal Insurance and Mitigation Administration diff --git a/examples/insurance-claims-agent/verified-run/raw/appeal_decision-parse.json b/examples/insurance-claims-agent/verified-run/raw/appeal_decision-parse.json new file mode 100644 index 00000000..93b72b13 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/raw/appeal_decision-parse.json @@ -0,0 +1,1496 @@ +{ + "entities": [], + "relations": [], + "classifications": [], + "objects": [], + "id": "nfip-appeal-b8", + "data": { + "text": "FEDERAL EMERGENCY MANAGEMENT AGENCY (FEMA) FEDERAL INSURANCE MITIGATION ADMINISTRATION (FIMA) APPEAL DECISION\n\nFEMA Flood Insurance Appeal Decision #B8\n\nSUMMARY\n\nThe policyholder appealed the flood insurance carrier's (hereinafter 'insurer') denial of a part of their claim under the Standard Flood Insurance Policy (SFIP) 1 for damages to his property arising in July 2019.\n\nThe policyholder files this appeal under 44 C.F.R. \u00a7 62.20. The appeals process is available after the insurer issues a written denial, in whole or in part, of the policyholder's claim. 2\n\nAfter reviewing the issues, evidence, and relevant authorities, FEMA affirms the insurer's decision.\n\nBACKGROUND\n\nCOVERAGE\n\nThe policyholder insures property under the SFIP Dwelling Form. At the time of loss, the policyholder had $250,000 of building coverage with a $2,000 deductible.\n\nEVENT AND CLAIM FACTS\n\nIn July 2019, an accumulation of heavy rainfall from a severe thunderstorm created overflow from Lake Ontario. The rainfall inundated the insured building and neighboring properties creating a general and temporary condition of flood.\n\nThe policyholder reported the loss to the insurer and the insurer assigned an adjuster to the claim. The adjuster inspected the property in July 2019. The insured building is located on a small island and is accessible only by boat. The adjuster measured a waterline of 24 inches on the exterior of the building. Because the building is elevated, floodwaters were not high enough to reach the building's first floor. Floodwaters were limited to the crawlspace area underneath the building.\n\n1 See 44 C.F.R. \u00a7 61.13 (2018); Dwelling Form available at 44 C.F.R. pt. 61 App. A(1) [hereinafter 'SFIP'].\n\n2 The policyholder's appeal and related documents concerning the appeal, claim, or policy are on file with FEMA, Federal Insurance and Mitigation Administration, Federal Insurance Directorate, Policyholder Services Division, Appeals Branch [hereinafter 'Appeal File'].\n\nThe building is located in a special flood hazard area (flood zone AE) and was constructed in 1989, after the date the local community entered the federal flood program in 1981. The first floor is elevated by piers. As such, the claim is subject to SFIP coverage limitations for post-FIRM (Flood Insurance Rate Map) elevated buildings. 3 The adjuster took the SFIP's coverage limitations for post-FIRM elevated buildings into account and estimated the cost for flood cleanup at $935.67.\n\nBecause of questions on the claim, the insurer retained an engineer to verify the condition of loss and the amount of flood-borne debris, sand, and stones deposited underneath the building. The same engineer inspected the building in 2018 after a previous flood event. The engineer determined that since the 2018 inspection, only a minor amount of flood-borne debris was deposited under the building. The engineer estimated this amount ranged from 12 to 15 cubic yards of stones and no sand.\n\nThe insurer reviewed the policyholder's amended proof of loss totaling $182,552.00 and denied the policyholder's additional payment request. In a letter dated December 2019, the insurer denied coverage for flood-borne debris removal stating the stones that washed up under the insured building were not covered under the SFIP.\n\nThe policyholder appeals the insurer's denial, stating the SFIP covers debris removal, including the removal of stones. The policyholder requests coverage for the cost to remove 12 to 15 cubic yards of stones as recommended by the insurer's engineer. In support of the appeal, the policyholder provides an estimate from a local service provider to remove the stones from underneath the building totaling $49,500.00 and a second estimate for transporting the removed stones by barge totaling $181,832.94.\n\nISSUE\n\nThe policyholder appeals the insurer's denial of flood-borne debris removal and requests payment to remove stones that were washed in underneath their insured building during the subject flood event.\n\nRULES\n\nThe insurer agrees to pay the policyholder for direct physical loss by or from flood to covered property, provided the policyholder complies with all terms and conditions of the SFIP. 4\n\nThe SFIP covers the expense to remove non-owned flood debris that is on or in insured property. 5\n\nIn case of a loss or request for payment, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that supports their flood loss and the dollar amount requested. This proof of loss documentation packet should also include details of any other insurance that may cover the loss and other documents such as detailed repair estimates for the current loss, repair estimates and proof of repairs and price from previous flood losses and claim payments. 6\n\n3 See SFIP (II)(B)(14), (II)(B)(23), (II)(B)(26), and (III)(A)(8).\n\n4 See SFIP (I), (II)(B)(12).\n\n5 See SFIP (III)(C)(1)(a).\n\n6 See SFIP (VII)(J), (VII)(K).\n\nANALYSIS\n\nThe policyholder appeals the denial of coverage for the cost to remove flood-borne stones deposited underneath the insured building.\n\nFEMA's review agrees with the policyholder that the SFIP covers the cost to remove flood-borne debris and cleanup of non-owned debris that is on or in the insured property. This scope of coverage may encompass the cost to remove flood-borne debris such as stones, sand, and plant-life that have washed up underneath the insured building's perimeter footprint. The SFIP excludes any additional cost related to a local community ordinance or code compliance order for the removal of any debris. 7\n\nThe SFIP's scope of coverage for non-owned debris is limited to removal from the insured building. The covered scope of non-owned flood-borne debris is limited to the removal of flood-borne debris underneath the insured building to the area around the perimeter of the building. The SFIP does not cover the expense to dispose non-owned debris because it is not insured property.\n\nThe scope of coverage under the claim for non-owned debris is limited to the labor and equipment usage to remove the 12 to 15 cubic yards of stones. The labor cost should account for any exceptional condition present with working underneath the building within the crawlspace. The SFIP does not cover any increased cost to remove non-owned debris in the yard or to cart debris from the perimeter of the building into a barge, nor the expense for barge transportation, handling, and disposal.\n\nThe policyholder's claim of July 2019, follows three flood claims filed on May 20, 2019, May 29, 2019, and June 11, 2019. The policyholder also reported losses subsequent to the subject flood event that occurred later in July 2019 and October 2019. In order to receive payment on the current and subsequent flood losses, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss documentation packet should include all related estimates to remove debris from underneath the insured building, plus estimates to remove debris from the yard. The packet should include proof of repairs and debris removal from the three previous flood claims filed 2019.\n\nBecause of the large dollar amount presented by the policyholder's contractor, FEMA recommends the policyholder provide additional evidence the estimated dollar amount from its contractor is limited to the covered scope of work. The SFIP does not cover the cost to remove non-owned flood-borne debris from the yard and it does not cover the expense to ship non-owned flood-borne debris by barge for further handling and disposal. The SFIP covers pricing that is reasonable and customary to the loss and location. 8 This includes labor and equipment usage for removing of 12 to 15 cubic yards of stone material.\n\nThe SFIP will cover reasonable additional labor costs customary for site conditions with working underneath the insured building. To ensure the validity of the contractor's quoted price of $3,564 per cubic yard with sales tax, the policyholder should provide the insurer with other debris removal estimates from one or more different contractors.\n\n7 See SFIP (V)(A)(6).\n\n8 See National Flood Insurance Program Claims Manual- Section 2.5.2 Building Scope and Estimate.\n\nBased on previous claims, the policyholder has received payment(s) for similar losses as the subject flood claim. The policyholder should provide proof of repairs and price from the previous losses related to removing stones and debris from underneath the building, as well as the cost paid to remove the same from the yard, even though flood-borne debris removal in the yard is not covered under the SFIP. Because of the price per cubic yard quoted, the policyholder's proof of loss documentation packet should include evidence that the payment request is similarly priced to similar debris removal tasks paid for after the prior flood events.\n\nCONCLUSION\n\nBased on the facts and analysis above, FEMA directs the insurer to cover and pay the cost to remove nonowned flood-borne debris from underneath the insured building to the perimeter of the building in the yard. In order to ensure against a payment overlap, the insurer should review the documentation in its file for the policyholder's previous claims with debris removal. Before issuing any additional payment for the subject July 2019 flood event, the insurer should verify that debris removal for the same area underneath the building was performed before the July 2019 flood event.\n\nIf the policyholder does not agree with the insurer's payment recommendation, he must prove his loss and send the insurer a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss packet should also include the documentation explained above. Any further adjustment of the claim remains under the direction of the insurer, based on the merits of their finding in accordance with all SFIP terms and conditions.", + "markdown": "\n\n## FEDERAL EMERGENCY MANAGEMENT AGENCY (FEMA) FEDERAL INSURANCE MITIGATION ADMINISTRATION (FIMA) APPEAL DECISION\n\nFEMA Flood Insurance Appeal Decision #B8\n\n## SUMMARY\n\nThe policyholder appealed the flood insurance carrier's (hereinafter 'insurer') denial of a part of their claim under the Standard Flood Insurance Policy (SFIP) 1 for damages to his property arising in July 2019.\n\nThe policyholder files this appeal under 44 C.F.R. \u00a7 62.20. The appeals process is available after the insurer issues a written denial, in whole or in part, of the policyholder's claim. 2\n\nAfter reviewing the issues, evidence, and relevant authorities, FEMA affirms the insurer's decision.\n\n## BACKGROUND\n\n## COVERAGE\n\nThe policyholder insures property under the SFIP Dwelling Form. At the time of loss, the policyholder had $250,000 of building coverage with a $2,000 deductible.\n\n## EVENT AND CLAIM FACTS\n\nIn July 2019, an accumulation of heavy rainfall from a severe thunderstorm created overflow from Lake Ontario. The rainfall inundated the insured building and neighboring properties creating a general and temporary condition of flood.\n\nThe policyholder reported the loss to the insurer and the insurer assigned an adjuster to the claim. The adjuster inspected the property in July 2019. The insured building is located on a small island and is accessible only by boat. The adjuster measured a waterline of 24 inches on the exterior of the building. Because the building is elevated, floodwaters were not high enough to reach the building's first floor. Floodwaters were limited to the crawlspace area underneath the building.\n\n1 See 44 C.F.R. \u00a7 61.13 (2018); Dwelling Form available at 44 C.F.R. pt. 61 App. A(1) [hereinafter 'SFIP'].\n\n2 The policyholder's appeal and related documents concerning the appeal, claim, or policy are on file with FEMA, Federal Insurance and Mitigation Administration, Federal Insurance Directorate, Policyholder Services Division, Appeals Branch [hereinafter 'Appeal File'].\n\nThe building is located in a special flood hazard area (flood zone AE) and was constructed in 1989, after the date the local community entered the federal flood program in 1981. The first floor is elevated by piers. As such, the claim is subject to SFIP coverage limitations for post-FIRM (Flood Insurance Rate Map) elevated buildings. 3 The adjuster took the SFIP's coverage limitations for post-FIRM elevated buildings into account and estimated the cost for flood cleanup at $935.67.\n\nBecause of questions on the claim, the insurer retained an engineer to verify the condition of loss and the amount of flood-borne debris, sand, and stones deposited underneath the building. The same engineer inspected the building in 2018 after a previous flood event. The engineer determined that since the 2018 inspection, only a minor amount of flood-borne debris was deposited under the building. The engineer estimated this amount ranged from 12 to 15 cubic yards of stones and no sand.\n\nThe insurer reviewed the policyholder's amended proof of loss totaling $182,552.00 and denied the policyholder's additional payment request. In a letter dated December 2019, the insurer denied coverage for flood-borne debris removal stating the stones that washed up under the insured building were not covered under the SFIP.\n\nThe policyholder appeals the insurer's denial, stating the SFIP covers debris removal, including the removal of stones. The policyholder requests coverage for the cost to remove 12 to 15 cubic yards of stones as recommended by the insurer's engineer. In support of the appeal, the policyholder provides an estimate from a local service provider to remove the stones from underneath the building totaling $49,500.00 and a second estimate for transporting the removed stones by barge totaling $181,832.94.\n\n## ISSUE\n\nThe policyholder appeals the insurer's denial of flood-borne debris removal and requests payment to remove stones that were washed in underneath their insured building during the subject flood event.\n\n## RULES\n\nThe insurer agrees to pay the policyholder for direct physical loss by or from flood to covered property, provided the policyholder complies with all terms and conditions of the SFIP. 4\n\nThe SFIP covers the expense to remove non-owned flood debris that is on or in insured property. 5\n\nIn case of a loss or request for payment, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that supports their flood loss and the dollar amount requested. This proof of loss documentation packet should also include details of any other insurance that may cover the loss and other documents such as detailed repair estimates for the current loss, repair estimates and proof of repairs and price from previous flood losses and claim payments. 6\n\n3 See SFIP (II)(B)(14), (II)(B)(23), (II)(B)(26), and (III)(A)(8).\n\n4 See SFIP (I), (II)(B)(12).\n\n5 See SFIP (III)(C)(1)(a).\n\n6 See SFIP (VII)(J), (VII)(K).\n\n## ANALYSIS\n\nThe policyholder appeals the denial of coverage for the cost to remove flood-borne stones deposited underneath the insured building.\n\nFEMA's review agrees with the policyholder that the SFIP covers the cost to remove flood-borne debris and cleanup of non-owned debris that is on or in the insured property. This scope of coverage may encompass the cost to remove flood-borne debris such as stones, sand, and plant-life that have washed up underneath the insured building's perimeter footprint. The SFIP excludes any additional cost related to a local community ordinance or code compliance order for the removal of any debris. 7\n\nThe SFIP's scope of coverage for non-owned debris is limited to removal from the insured building. The covered scope of non-owned flood-borne debris is limited to the removal of flood-borne debris underneath the insured building to the area around the perimeter of the building. The SFIP does not cover the expense to dispose non-owned debris because it is not insured property.\n\nThe scope of coverage under the claim for non-owned debris is limited to the labor and equipment usage to remove the 12 to 15 cubic yards of stones. The labor cost should account for any exceptional condition present with working underneath the building within the crawlspace. The SFIP does not cover any increased cost to remove non-owned debris in the yard or to cart debris from the perimeter of the building into a barge, nor the expense for barge transportation, handling, and disposal.\n\nThe policyholder's claim of July 2019, follows three flood claims filed on May 20, 2019, May 29, 2019, and June 11, 2019. The policyholder also reported losses subsequent to the subject flood event that occurred later in July 2019 and October 2019. In order to receive payment on the current and subsequent flood losses, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss documentation packet should include all related estimates to remove debris from underneath the insured building, plus estimates to remove debris from the yard. The packet should include proof of repairs and debris removal from the three previous flood claims filed 2019.\n\nBecause of the large dollar amount presented by the policyholder's contractor, FEMA recommends the policyholder provide additional evidence the estimated dollar amount from its contractor is limited to the covered scope of work. The SFIP does not cover the cost to remove non-owned flood-borne debris from the yard and it does not cover the expense to ship non-owned flood-borne debris by barge for further handling and disposal. The SFIP covers pricing that is reasonable and customary to the loss and location. 8 This includes labor and equipment usage for removing of 12 to 15 cubic yards of stone material.\n\nThe SFIP will cover reasonable additional labor costs customary for site conditions with working underneath the insured building. To ensure the validity of the contractor's quoted price of $3,564 per cubic yard with sales tax, the policyholder should provide the insurer with other debris removal estimates from one or more different contractors.\n\n7 See SFIP (V)(A)(6).\n\n8 See National Flood Insurance Program Claims Manual- Section 2.5.2 Building Scope and Estimate.\n\nBased on previous claims, the policyholder has received payment(s) for similar losses as the subject flood claim. The policyholder should provide proof of repairs and price from the previous losses related to removing stones and debris from underneath the building, as well as the cost paid to remove the same from the yard, even though flood-borne debris removal in the yard is not covered under the SFIP. Because of the price per cubic yard quoted, the policyholder's proof of loss documentation packet should include evidence that the payment request is similarly priced to similar debris removal tasks paid for after the prior flood events.\n\n## CONCLUSION\n\nBased on the facts and analysis above, FEMA directs the insurer to cover and pay the cost to remove nonowned flood-borne debris from underneath the insured building to the perimeter of the building in the yard. In order to ensure against a payment overlap, the insurer should review the documentation in its file for the policyholder's previous claims with debris removal. Before issuing any additional payment for the subject July 2019 flood event, the insurer should verify that debris removal for the same area underneath the building was performed before the July 2019 flood event.\n\nIf the policyholder does not agree with the insurer's payment recommendation, he must prove his loss and send the insurer a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss packet should also include the documentation explained above. Any further adjustment of the claim remains under the direction of the insurer, based on the merits of their finding in accordance with all SFIP terms and conditions.", + "document": { + "schema_name": "DoclingDocument", + "version": "1.10.0", + "name": "document", + "origin": { + "mimetype": "application/pdf", + "binary_hash": 15414442785510502810, + "filename": "document.pdf" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "content_layer": "furniture", + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/11" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + } + ], + "content_layer": "body", + "name": "_root_", + "label": "unspecified" + }, + "groups": [], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 675.48508, + "r": 504.25, + "b": 628.8757381818182, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 109 + ] + } + ], + "orig": "FEDERAL EMERGENCY MANAGEMENT AGENCY (FEMA) FEDERAL INSURANCE MITIGATION ADMINISTRATION (FIMA) APPEAL DECISION", + "text": "FEDERAL EMERGENCY MANAGEMENT AGENCY (FEMA) FEDERAL INSURANCE MITIGATION ADMINISTRATION (FIMA) APPEAL DECISION", + "level": 1 + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 609.148, + "r": 294.65, + "b": 598.8010909090909, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 40 + ] + } + ], + "orig": "FEMA Flood Insurance Appeal Decision #B8", + "text": "FEMA Flood Insurance Appeal Decision #B8" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 566.728, + "r": 141.89, + "b": 554.8636641221374, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 7 + ] + } + ], + "orig": "SUMMARY", + "text": "SUMMARY", + "level": 1 + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 534.76072, + "r": 541.78, + "b": 511.57527999999996, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 212 + ] + } + ], + "orig": "The policyholder appealed the flood insurance carrier's (hereinafter 'insurer') denial of a part of their claim under the Standard Flood Insurance Policy (SFIP) 1 for damages to his property arising in July 2019.", + "text": "The policyholder appealed the flood insurance carrier's (hereinafter 'insurer') denial of a part of their claim under the Standard Flood Insurance Policy (SFIP) 1 for damages to his property arising in July 2019." + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 493.12072, + "r": 516.8861599999999, + "b": 469.93528000000003, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 187 + ] + } + ], + "orig": "The policyholder files this appeal under 44 C.F.R. \u00a7 62.20. The appeals process is available after the insurer issues a written denial, in whole or in part, of the policyholder's claim. 2", + "text": "The policyholder files this appeal under 44 C.F.R. \u00a7 62.20. The appeals process is available after the insurer issues a written denial, in whole or in part, of the policyholder's claim. 2" + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 451.72072, + "r": 513.7, + "b": 442.21528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 100 + ] + } + ], + "orig": "After reviewing the issues, evidence, and relevant authorities, FEMA affirms the insurer's decision.", + "text": "After reviewing the issues, evidence, and relevant authorities, FEMA affirms the insurer's decision." + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 410.33799999999997, + "r": 165.17, + "b": 398.4736641221374, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 10 + ] + } + ], + "orig": "BACKGROUND", + "text": "BACKGROUND", + "level": 1 + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 378.20408000000003, + "r": 128.18, + "b": 368.9181018181818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 8 + ] + } + ], + "orig": "COVERAGE", + "text": "COVERAGE", + "level": 1 + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 349.46072, + "r": 527.4860799999999, + "b": 326.27528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 161 + ] + } + ], + "orig": "The policyholder insures property under the SFIP Dwelling Form. At the time of loss, the policyholder had $250,000 of building coverage with a $2,000 deductible.", + "text": "The policyholder insures property under the SFIP Dwelling Form. At the time of loss, the policyholder had $250,000 of building coverage with a $2,000 deductible." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 307.52408, + "r": 193.66699999999994, + "b": 298.2381018181818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "EVENT AND CLAIM FACTS", + "text": "EVENT AND CLAIM FACTS", + "level": 1 + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 279.74072, + "r": 532.9745599999995, + "b": 242.99527999999998, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 234 + ] + } + ], + "orig": "In July 2019, an accumulation of heavy rainfall from a severe thunderstorm created overflow from Lake Ontario. The rainfall inundated the insured building and neighboring properties creating a general and temporary condition of flood.", + "text": "In July 2019, an accumulation of heavy rainfall from a severe thunderstorm created overflow from Lake Ontario. The rainfall inundated the insured building and neighboring properties creating a general and temporary condition of flood." + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 225.14072, + "r": 527.2573599999995, + "b": 161.00528000000008, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 489 + ] + } + ], + "orig": "The policyholder reported the loss to the insurer and the insurer assigned an adjuster to the claim. The adjuster inspected the property in July 2019. The insured building is located on a small island and is accessible only by boat. The adjuster measured a waterline of 24 inches on the exterior of the building. Because the building is elevated, floodwaters were not high enough to reach the building's first floor. Floodwaters were limited to the crawlspace area underneath the building.", + "text": "The policyholder reported the loss to the insurer and the insurer assigned an adjuster to the claim. The adjuster inspected the property in July 2019. The insured building is located on a small island and is accessible only by boat. The adjuster measured a waterline of 24 inches on the exterior of the building. Because the building is elevated, floodwaters were not high enough to reach the building's first floor. Floodwaters were limited to the crawlspace area underneath the building." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "footnote", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 116.59064000000001, + "r": 509.11, + "b": 106.94430545454543, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 107 + ] + } + ], + "orig": "1 See 44 C.F.R. \u00a7 61.13 (2018); Dwelling Form available at 44 C.F.R. pt. 61 App. A(1) [hereinafter 'SFIP'].", + "text": "1 See 44 C.F.R. \u00a7 61.13 (2018); Dwelling Form available at 44 C.F.R. pt. 61 App. A(1) [hereinafter 'SFIP']." + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "footnote", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 72.024, + "t": 105.07064000000003, + "r": 530.9540400000006, + "b": 72.39071999999999, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 269 + ] + } + ], + "orig": "2 The policyholder's appeal and related documents concerning the appeal, claim, or policy are on file with FEMA, Federal Insurance and Mitigation Administration, Federal Insurance Directorate, Policyholder Services Division, Appeals Branch [hereinafter 'Appeal File'].", + "text": "2 The policyholder's appeal and related documents concerning the appeal, claim, or policy are on file with FEMA, Federal Insurance and Mitigation Administration, Federal Insurance Directorate, Policyholder Services Division, Appeals Branch [hereinafter 'Appeal File']." + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 475.3, + "t": 58.554719999999975, + "r": 542.86, + "b": 49.04927999999995, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "1 | FEMA #B8", + "text": "1 | FEMA #B8" + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 717.31072, + "r": 535.288, + "b": 653.2052799999999, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 486 + ] + } + ], + "orig": "The building is located in a special flood hazard area (flood zone AE) and was constructed in 1989, after the date the local community entered the federal flood program in 1981. The first floor is elevated by piers. As such, the claim is subject to SFIP coverage limitations for post-FIRM (Flood Insurance Rate Map) elevated buildings. 3 The adjuster took the SFIP's coverage limitations for post-FIRM elevated buildings into account and estimated the cost for flood cleanup at $935.67.", + "text": "The building is located in a special flood hazard area (flood zone AE) and was constructed in 1989, after the date the local community entered the federal flood program in 1981. The first floor is elevated by piers. As such, the claim is subject to SFIP coverage limitations for post-FIRM (Flood Insurance Rate Map) elevated buildings. 3 The adjuster took the SFIP's coverage limitations for post-FIRM elevated buildings into account and estimated the cost for flood cleanup at $935.67." + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 635.35072, + "r": 536.3783199999996, + "b": 571.24528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 491 + ] + } + ], + "orig": "Because of questions on the claim, the insurer retained an engineer to verify the condition of loss and the amount of flood-borne debris, sand, and stones deposited underneath the building. The same engineer inspected the building in 2018 after a previous flood event. The engineer determined that since the 2018 inspection, only a minor amount of flood-borne debris was deposited under the building. The engineer estimated this amount ranged from 12 to 15 cubic yards of stones and no sand.", + "text": "Because of questions on the claim, the insurer retained an engineer to verify the condition of loss and the amount of flood-borne debris, sand, and stones deposited underneath the building. The same engineer inspected the building in 2018 after a previous flood event. The engineer determined that since the 2018 inspection, only a minor amount of flood-borne debris was deposited under the building. The engineer estimated this amount ranged from 12 to 15 cubic yards of stones and no sand." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 553.48072, + "r": 534.06688, + "b": 503.05528000000004, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 326 + ] + } + ], + "orig": "The insurer reviewed the policyholder's amended proof of loss totaling $182,552.00 and denied the policyholder's additional payment request. In a letter dated December 2019, the insurer denied coverage for flood-borne debris removal stating the stones that washed up under the insured building were not covered under the SFIP.", + "text": "The insurer reviewed the policyholder's amended proof of loss totaling $182,552.00 and denied the policyholder's additional payment request. In a letter dated December 2019, the insurer denied coverage for flood-borne debris removal stating the stones that washed up under the insured building were not covered under the SFIP." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 485.20072, + "r": 532.2731199999998, + "b": 421.09528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 503 + ] + } + ], + "orig": "The policyholder appeals the insurer's denial, stating the SFIP covers debris removal, including the removal of stones. The policyholder requests coverage for the cost to remove 12 to 15 cubic yards of stones as recommended by the insurer's engineer. In support of the appeal, the policyholder provides an estimate from a local service provider to remove the stones from underneath the building totaling $49,500.00 and a second estimate for transporting the removed stones by barge totaling $181,832.94.", + "text": "The policyholder appeals the insurer's denial, stating the SFIP covers debris removal, including the removal of stones. The policyholder requests coverage for the cost to remove 12 to 15 cubic yards of stones as recommended by the insurer's engineer. In support of the appeal, the policyholder provides an estimate from a local service provider to remove the stones from underneath the building totaling $49,500.00 and a second estimate for transporting the removed stones by barge totaling $181,832.94." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 389.21799999999996, + "r": 112.97, + "b": 377.3536641221374, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 5 + ] + } + ], + "orig": "ISSUE", + "text": "ISSUE", + "level": 1 + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 358.82072, + "r": 517.6432, + "b": 335.75528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 199 + ] + } + ], + "orig": "The policyholder appeals the insurer's denial of flood-borne debris removal and requests payment to remove stones that were washed in underneath their insured building during the subject flood event.", + "text": "The policyholder appeals the insurer's denial of flood-borne debris removal and requests payment to remove stones that were washed in underneath their insured building during the subject flood event." + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 301.35799999999995, + "r": 116.93, + "b": 289.4936641221374, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 5 + ] + } + ], + "orig": "RULES", + "text": "RULES", + "level": 1 + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 270.98072, + "r": 530.84416, + "b": 247.79528000000005, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 185 + ] + } + ], + "orig": "The insurer agrees to pay the policyholder for direct physical loss by or from flood to covered property, provided the policyholder complies with all terms and conditions of the SFIP. 4", + "text": "The insurer agrees to pay the policyholder for direct physical loss by or from flood to covered property, provided the policyholder complies with all terms and conditions of the SFIP. 4" + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 231.19327999999996, + "r": 502.3, + "b": 220.55528000000004, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 97 + ] + } + ], + "orig": "The SFIP covers the expense to remove non-owned flood debris that is on or in insured property. 5", + "text": "The SFIP covers the expense to remove non-owned flood debris that is on or in insured property. 5" + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 202.67072000000007, + "r": 539.2153599999998, + "b": 138.56528000000003, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 519 + ] + } + ], + "orig": "In case of a loss or request for payment, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that supports their flood loss and the dollar amount requested. This proof of loss documentation packet should also include details of any other insurance that may cover the loss and other documents such as detailed repair estimates for the current loss, repair estimates and proof of repairs and price from previous flood losses and claim payments. 6", + "text": "In case of a loss or request for payment, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that supports their flood loss and the dollar amount requested. This proof of loss documentation packet should also include details of any other insurance that may cover the loss and other documents such as detailed repair estimates for the current loss, repair estimates and proof of repairs and price from previous flood losses and claim payments. 6" + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "footnote", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 116.47064, + "r": 325.72, + "b": 106.82430545454542, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 66 + ] + } + ], + "orig": "3 See SFIP (II)(B)(14), (II)(B)(23), (II)(B)(26), and (III)(A)(8).", + "text": "3 See SFIP (II)(B)(14), (II)(B)(23), (II)(B)(26), and (III)(A)(8)." + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "footnote", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 105.07064000000003, + "r": 179.99, + "b": 95.42830545454547, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 28 + ] + } + ], + "orig": "4 See SFIP (I), (II)(B)(12).", + "text": "4 See SFIP (I), (II)(B)(12)." + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "footnote", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 93.55463999999995, + "r": 174.35000000000002, + "b": 83.90830545454548, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 26 + ] + } + ], + "orig": "5 See SFIP (III)(C)(1)(a).", + "text": "5 See SFIP (III)(C)(1)(a)." + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "footnote", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 72.024, + "t": 82.03463999999997, + "r": 192.11, + "b": 72.38830545454539, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 30 + ] + } + ], + "orig": "6 See SFIP (VII)(J), (VII)(K).", + "text": "6 See SFIP (VII)(J), (VII)(K)." + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 2, + "bbox": { + "l": 475.3, + "t": 58.554719999999975, + "r": 542.86, + "b": 49.04927999999995, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "2 | FEMA #B8", + "text": "2 | FEMA #B8" + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 716.848, + "r": 136.25, + "b": 704.9836641221374, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 8 + ] + } + ], + "orig": "ANALYSIS", + "text": "ANALYSIS", + "level": 1 + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 686.47072, + "r": 515.3048799999998, + "b": 663.40528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 132 + ] + } + ], + "orig": "The policyholder appeals the denial of coverage for the cost to remove flood-borne stones deposited underneath the insured building.", + "text": "The policyholder appeals the denial of coverage for the cost to remove flood-borne stones deposited underneath the insured building." + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 645.55072, + "r": 538.6002399999999, + "b": 581.4452799999999, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 494 + ] + } + ], + "orig": "FEMA's review agrees with the policyholder that the SFIP covers the cost to remove flood-borne debris and cleanup of non-owned debris that is on or in the insured property. This scope of coverage may encompass the cost to remove flood-borne debris such as stones, sand, and plant-life that have washed up underneath the insured building's perimeter footprint. The SFIP excludes any additional cost related to a local community ordinance or code compliance order for the removal of any debris. 7", + "text": "FEMA's review agrees with the policyholder that the SFIP covers the cost to remove flood-borne debris and cleanup of non-owned debris that is on or in the insured property. This scope of coverage may encompass the cost to remove flood-borne debris such as stones, sand, and plant-life that have washed up underneath the insured building's perimeter footprint. The SFIP excludes any additional cost related to a local community ordinance or code compliance order for the removal of any debris. 7" + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 563.7107199999999, + "r": 539.2355199999998, + "b": 513.13528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 378 + ] + } + ], + "orig": "The SFIP's scope of coverage for non-owned debris is limited to removal from the insured building. The covered scope of non-owned flood-borne debris is limited to the removal of flood-borne debris underneath the insured building to the area around the perimeter of the building. The SFIP does not cover the expense to dispose non-owned debris because it is not insured property.", + "text": "The SFIP's scope of coverage for non-owned debris is limited to removal from the insured building. The covered scope of non-owned flood-borne debris is limited to the removal of flood-borne debris underneath the insured building to the area around the perimeter of the building. The SFIP does not cover the expense to dispose non-owned debris because it is not insured property." + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 495.40072, + "r": 540.44368, + "b": 431.29528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 491 + ] + } + ], + "orig": "The scope of coverage under the claim for non-owned debris is limited to the labor and equipment usage to remove the 12 to 15 cubic yards of stones. The labor cost should account for any exceptional condition present with working underneath the building within the crawlspace. The SFIP does not cover any increased cost to remove non-owned debris in the yard or to cart debris from the perimeter of the building into a barge, nor the expense for barge transportation, handling, and disposal.", + "text": "The scope of coverage under the claim for non-owned debris is limited to the labor and equipment usage to remove the 12 to 15 cubic yards of stones. The labor cost should account for any exceptional condition present with working underneath the building within the crawlspace. The SFIP does not cover any increased cost to remove non-owned debris in the yard or to cart debris from the perimeter of the building into a barge, nor the expense for barge transportation, handling, and disposal." + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 413.44072, + "r": 541.2809599999996, + "b": 308.39528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 799 + ] + } + ], + "orig": "The policyholder's claim of July 2019, follows three flood claims filed on May 20, 2019, May 29, 2019, and June 11, 2019. The policyholder also reported losses subsequent to the subject flood event that occurred later in July 2019 and October 2019. In order to receive payment on the current and subsequent flood losses, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss documentation packet should include all related estimates to remove debris from underneath the insured building, plus estimates to remove debris from the yard. The packet should include proof of repairs and debris removal from the three previous flood claims filed 2019.", + "text": "The policyholder's claim of July 2019, follows three flood claims filed on May 20, 2019, May 29, 2019, and June 11, 2019. The policyholder also reported losses subsequent to the subject flood event that occurred later in July 2019 and October 2019. In order to receive payment on the current and subsequent flood losses, the SFIP requires the policyholder to submit directly to the insurer, a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss documentation packet should include all related estimates to remove debris from underneath the insured building, plus estimates to remove debris from the yard. The packet should include proof of repairs and debris removal from the three previous flood claims filed 2019." + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 290.66071999999997, + "r": 537.58, + "b": 212.87527999999998, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 610 + ] + } + ], + "orig": "Because of the large dollar amount presented by the policyholder's contractor, FEMA recommends the policyholder provide additional evidence the estimated dollar amount from its contractor is limited to the covered scope of work. The SFIP does not cover the cost to remove non-owned flood-borne debris from the yard and it does not cover the expense to ship non-owned flood-borne debris by barge for further handling and disposal. The SFIP covers pricing that is reasonable and customary to the loss and location. 8 This includes labor and equipment usage for removing of 12 to 15 cubic yards of stone material.", + "text": "Because of the large dollar amount presented by the policyholder's contractor, FEMA recommends the policyholder provide additional evidence the estimated dollar amount from its contractor is limited to the covered scope of work. The SFIP does not cover the cost to remove non-owned flood-borne debris from the yard and it does not cover the expense to ship non-owned flood-borne debris by barge for further handling and disposal. The SFIP covers pricing that is reasonable and customary to the loss and location. 8 This includes labor and equipment usage for removing of 12 to 15 cubic yards of stone material." + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 194.99072, + "r": 538.7536000000001, + "b": 144.56528000000003, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 346 + ] + } + ], + "orig": "The SFIP will cover reasonable additional labor costs customary for site conditions with working underneath the insured building. To ensure the validity of the contractor's quoted price of $3,564 per cubic yard with sales tax, the policyholder should provide the insurer with other debris removal estimates from one or more different contractors.", + "text": "The SFIP will cover reasonable additional labor costs customary for site conditions with working underneath the insured building. To ensure the validity of the contractor's quoted price of $3,564 per cubic yard with sales tax, the policyholder should provide the insurer with other debris removal estimates from one or more different contractors." + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "footnote", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 93.55463999999995, + "r": 161.03, + "b": 83.90830545454548, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "7 See SFIP (V)(A)(6).", + "text": "7 See SFIP (V)(A)(6)." + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "footnote", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 72.024, + "t": 82.03463999999997, + "r": 481.27, + "b": 72.38830545454539, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 96 + ] + } + ], + "orig": "8 See National Flood Insurance Program Claims Manual- Section 2.5.2 Building Scope and Estimate.", + "text": "8 See National Flood Insurance Program Claims Manual- Section 2.5.2 Building Scope and Estimate." + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 475.3, + "t": 58.554719999999975, + "r": 542.86, + "b": 49.04927999999995, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "3 | FEMA #B8", + "text": "3 | FEMA #B8" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 72.024, + "t": 717.31072, + "r": 542.59552, + "b": 625.84528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 644 + ] + } + ], + "orig": "Based on previous claims, the policyholder has received payment(s) for similar losses as the subject flood claim. The policyholder should provide proof of repairs and price from the previous losses related to removing stones and debris from underneath the building, as well as the cost paid to remove the same from the yard, even though flood-borne debris removal in the yard is not covered under the SFIP. Because of the price per cubic yard quoted, the policyholder's proof of loss documentation packet should include evidence that the payment request is similarly priced to similar debris removal tasks paid for after the prior flood events.", + "text": "Based on previous claims, the policyholder has received payment(s) for similar losses as the subject flood claim. The policyholder should provide proof of repairs and price from the previous losses related to removing stones and debris from underneath the building, as well as the cost paid to remove the same from the yard, even though flood-borne debris removal in the yard is not covered under the SFIP. Because of the price per cubic yard quoted, the policyholder's proof of loss documentation packet should include evidence that the payment request is similarly priced to similar debris removal tasks paid for after the prior flood events." + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 72.024, + "t": 593.968, + "r": 157.37, + "b": 582.1036641221374, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 10 + ] + } + ], + "orig": "CONCLUSION", + "text": "CONCLUSION", + "level": 1 + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 72.024, + "t": 563.7107199999999, + "r": 540.28096, + "b": 485.89528, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 585 + ] + } + ], + "orig": "Based on the facts and analysis above, FEMA directs the insurer to cover and pay the cost to remove nonowned flood-borne debris from underneath the insured building to the perimeter of the building in the yard. In order to ensure against a payment overlap, the insurer should review the documentation in its file for the policyholder's previous claims with debris removal. Before issuing any additional payment for the subject July 2019 flood event, the insurer should verify that debris removal for the same area underneath the building was performed before the July 2019 flood event.", + "text": "Based on the facts and analysis above, FEMA directs the insurer to cover and pay the cost to remove nonowned flood-borne debris from underneath the insured building to the perimeter of the building in the yard. In order to ensure against a payment overlap, the insurer should review the documentation in its file for the policyholder's previous claims with debris removal. Before issuing any additional payment for the subject July 2019 flood event, the insurer should verify that debris removal for the same area underneath the building was performed before the July 2019 flood event." + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 72.024, + "t": 468.04071999999996, + "r": 542.46208, + "b": 403.93528000000003, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 488 + ] + } + ], + "orig": "If the policyholder does not agree with the insurer's payment recommendation, he must prove his loss and send the insurer a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss packet should also include the documentation explained above. Any further adjustment of the claim remains under the direction of the insurer, based on the merits of their finding in accordance with all SFIP terms and conditions.", + "text": "If the policyholder does not agree with the insurer's payment recommendation, he must prove his loss and send the insurer a signed and sworn proof of loss with the documentation that proves his loss and supports the dollar amount requested. This proof of loss packet should also include the documentation explained above. Any further adjustment of the claim remains under the direction of the insurer, based on the merits of their finding in accordance with all SFIP terms and conditions." + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 475.3, + "t": 58.554719999999975, + "r": 542.86, + "b": 49.04927999999995, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "4 | FEMA #B8", + "text": "4 | FEMA #B8" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "picture", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 413.9941101074219, + "t": 752.6048812866211, + "r": 562.3366088867188, + "b": 699.749885559082, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [], + "key_value_items": [], + "form_items": [], + "pages": { + "1": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 1 + }, + "2": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 2 + }, + "3": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 3 + }, + "4": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 4 + } + } + } + }, + "model": "docling" +} diff --git a/examples/insurance-claims-agent/verified-run/raw/claim-facts.json b/examples/insurance-claims-agent/verified-run/raw/claim-facts.json new file mode 100644 index 00000000..e98c27b9 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/raw/claim-facts.json @@ -0,0 +1,65 @@ +{ + "entities": [ + { + "text": "$935.67", + "label": "excluded debris cost", + "score": 0.80859375, + "start": 2491, + "end": 2498, + "bbox": null + }, + { + "text": "12 to 15 cubic yards", + "label": "debris volume", + "score": 0.97802734375, + "start": 2949, + "end": 2969, + "bbox": null + }, + { + "text": "$182,552.00", + "label": "proof of loss amount", + "score": 0.998046875, + "start": 3065, + "end": 3076, + "bbox": null + }, + { + "text": "$49,500.00", + "label": "debris removal estimate", + "score": 0.9775390625, + "start": 3726, + "end": 3736, + "bbox": null + }, + { + "text": "$181,832.94", + "label": "barge transportation estimate", + "score": 0.9951171875, + "start": 3813, + "end": 3824, + "bbox": null + }, + { + "text": "labor and equipment usage", + "label": "covered debris removal scope", + "score": 0.6630859375, + "start": 7859, + "end": 7884, + "bbox": null + }, + { + "text": "July 2019", + "label": "date of loss", + "score": 0.99658203125, + "start": 9635, + "end": 9644, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "appeal-facts", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/insurance-claims-agent/verified-run/raw/policy-parse.json b/examples/insurance-claims-agent/verified-run/raw/policy-parse.json new file mode 100644 index 00000000..431e5d00 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/raw/policy-parse.json @@ -0,0 +1,21350 @@ +{ + "entities": [], + "relations": [], + "classifications": [], + "objects": [], + "id": "sfip-dwelling-policy", + "data": { + "text": "National Flood Insurance Program\n\nDwelling Form\n\nStandard Flood Insurance Policy\n\nF-122 / October 2021\n\nStandard Flood Insurance Policy\n\nDwelling Form\n\nPlease read the policy carefully. The flood insurance provided is subject to limitations, restrictions, and exclusions.\n\nI. AGREEMENT\n\n- A. This policy insures the following types of property only:\n1. A one to four family residential building, not under a condominium form of ownership;\n- E. This policy insures only one building. If you own more than one building, coverage will apply to the single building specifically described in the Flood Insurance Application.\n2. A single-family dwelling unit in a condominium building; and\n3. Personal property in a building.\n- B. The Federal Emergency Management Agency (FEMA) provides flood insurance under the terms of the National Flood Insurance Act of 1968 and its amendments, and Title 44 of the Code of Federal Regulations.\n- C. We will pay you for direct physical loss by or from flood to your insured property if you:\n1. Have paid the full amount due (including applicable premiums, surcharges, and fees);\n2. Comply with all terms and conditions of this policy; and\n3. Have furnished accurate information and statements.\n- D. We have the right to review the information you give us at any time and revise your policy based on our review.\n- F. Subject to the exception in I.G below, multiple policies with building coverage cannot be issued to insure a single building to one insured or to different insureds, even if separate policies were issued through different NFIP insurers. Payment for damages may only be made under a single policy for building damages under Coverage ABuilding Property.\n- G. A Dwelling Form policy with building coverage may be issued to a unit owner in a condominium building that is also insured under a Residential Condominium\n\nBuilding Association Policy (RCBAP). However, no more than $250,000 may be paid in combined benefits for a single unit under the Dwelling Form policy and the RCBAP. We will only pay for damage once. Items of damage paid for under an RCBAP cannot also be claimed under the Dwelling Form policy.\n\nII. DEFINITIONS\n\nA. In this policy, 'you' and 'your' refer to the named insured(s) shown on the Declarations Page of this policy and the spouse of the named insured, if a resident of the same household. Insured(s) also includes: Any mortgagee and loss payee named in the Application and Declarations Page, as well as any other mortgagee or loss payee determined to exist at the time of loss, in the order of precedence. 'We,' 'us,' and 'our' refer to the insurer.\n\nSome definitions are complex because they are provided as they appear in the law or regulations, or result from court cases.\n\n- B. Flood , as used in this flood insurance policy, means:\n1. A general and temporary condition of partial or complete inundation of two or more acres of normally dry land area or of two or more properties (one of which is your property) from:\n- a. Overflow of inland or tidal waters;\n- b. Unusual and rapid accumulation or runoff of surface waters from any source;\n- c. Mudflow.\n2. Collapse or subsidence of land along the shore of a lake or similar body of water as a result of erosion\n\nor undermining caused by waves or currents of water exceeding anticipated cyclical levels that result in a flood as defined in B.1.a above.\n\nC. The following are the other key definitions we use in this policy:\n\n1. Act. The National Flood Insurance Act of 1968 and any amendments to it.\n2. Actual Cash Value. The cost to replace an insured item of property at the time of loss, less the value of its physical depreciation.\n3. Application. The statement made and signed by you or your agent in applying for this policy. The application gives information we use to determine the eligibility of the risk, the kind of policy to be issued, and the correct premium payment. The application is part of this flood insurance policy.\n4. Base Flood. A flood having a one percent chance of being equaled or exceeded in any given year.\n5. Basement. Any area of a building, including any sunken room or sunken portion of a room, having its floor below ground level on all sides.\n6. Building\n- a. A structure with two or more outside rigid walls and a fully secured roof that is affixed to a permanent site;\n- b. A manufactured home, also known as a mobile home, is a structure: built on a permanent chassis, transported to its site in one or more sections, and affixed to a permanent foundation; or\n- c. A travel trailer without wheels, built on a chassis and affixed to a permanent foundation, that is regulated under the community's floodplain management and building ordinances or laws.\n\nBuilding does not mean a gas or liquid storage tank, shipping container, or a recreational vehicle, park trailer, or other similar vehicle, except as described in C.6.c above.\n\n7. Cancellation. The ending of the insurance coverage provided by this policy before the expiration date.\n8. Condominium. That form of ownership of one or more buildings in which each unit owner has an undivided interest in common elements.\n9. Condominium Association. The entity made up of the unit owners responsible for the maintenance and operation of:\n- a. Common elements owned in undivided shares by unit owners; and\n- b. Other buildings in which the unit owners have use rights; where membership in the entity is a required condition of ownership.\n10. Condominium Building. A type of building for which the form of ownership is one in which each unit owner has an undivided interest in common elements of the building.\n11. Declarations Page. A computer-generated summary of information you provided in your application for insurance. The Declarations Page also describes the term of the policy, limits of coverage, and displays the premium and our name. The Declarations Page is a part of this flood insurance policy.\n12. Deductible. The amount of an insured loss that is your responsibility and that is incurred by you before any amounts are paid for the insured loss under this policy.\n13. Described Location. The location where the insured building(s) or personal property are found. The described location is shown on the Declarations Page.\n14. D irect Physical Loss By or From Flood. Loss or damage to insured property, directly caused by a flood. There must be evidence of physical changes to the property.\n15. Dwelling. A building designed for use as a residence for no more than four families or a single-family unit in a condominium building.\n16. Elevated Building. A building that has no basement and that has its lowest elevated floor raised above ground level by foundation walls, shear walls, posts, piers, pilings, or columns.\n17. Emergency Program. The initial phase of a community's participation in the National Flood Insurance Program. During this phase, only limited amounts of insurance are available under the Act and the regulations prescribed pursuant to the Act.\n18. Federal Policy Fee. A flat rate charge you must pay on each new or renewal policy to defray certain administrative expenses incurred in carrying out the National Flood Insurance Program.\n19. Improvements. Fixtures, alterations, installations, or additions comprising a part of the dwelling or apartment in which you reside.\n20. Mudflow. A river of liquid and flowing mud on the surface of normally dry land areas, as when earth is carried by a current of water. Other earth movements, such as landslide, slope failure, or\n\na saturated soil mass moving by liquidity down a slope, are not mudflows.\n\n21. National Flood Insurance Program (NFIP). The program of flood insurance coverage and floodplain management administered under the Act and applicable Federal regulations in Title 44 of the Code of Federal Regulations, Subchapter B.\n22. Policy. The entire written contract between you and us. It includes:\n- a. This printed form;\n- b. The application and Declarations Page;\n- c. Any endorsement(s) that may be issued; and\n- d. Any renewal certificate indicating that coverage has been instituted for a new policy and new policy term. Only one dwelling, which you specifically described in the application, may be insured under this policy.\n23. Pollutants. Substances that include, but are not limited to, any solid, liquid, gaseous, or thermal irritant or contaminant, including smoke, vapor, soot, fumes, acids, alkalis, chemicals, and waste. 'Waste' includes, but is not limited to, materials to be recycled, reconditioned, or reclaimed.\n24. Post-FIRM Building. A building for which construction or substantial improvement occurred after December 31, 1974, or on or after the effective date of an initial Flood Insurance Rate Map (FIRM), whichever is later.\n- a. The 365 days immediately preceding the time of loss; or\n- b. The period of ownership of you or your spouse, if either you or your spouse owned the dwelling for less than 365 days immediately preceding the time of loss.\n26. Probation Surcharge. A flat charge you must pay on each new or renewal policy issued covering property in a community the NFIP has placed on probation under the provisions of 44 CFR 59.24.\n27. Regular Program. The final phase of a community's participation in the National Flood Insurance Program. In this phase, a Flood Insurance Rate Map is in effect and full limits of coverage are available under the Act and the regulations prescribed pursuant to the Act.\n28. Special Flood Hazard Area (SFHA). An area having special flood or mudflow, and/or flood-related erosion hazards, and shown on a Flood Hazard Boundary Map or Flood Insurance Rate Map as Zone A, AO, A1-A30, AE, A99, AH, AR, AR/A, AR/ AE, AR/AH, AR/AO, AR/A1-A30, V1-V30, VE, or V.\n29. Unit. A single-family residential space you own in a condominium building.\n30. Valued Policy. A policy in which the insured and the insurer agree on the value of the property insured, that value being payable in the event of a total loss. The Standard Flood Insurance Policy is not a valued policy.\n25. Principal Residence. The dwelling in which you or your spouse have lived for at least 80 percent of:\n\nIII. PROPERTY INSURED\n\nare always considered part of the dwelling and cannot be separately insured.\n\n- A detached garage at the described location. Coverage is limited to no more than 10 percent of the limit of liability on the dwelling. Use of this insurance is at your option but reduces the building limit of liability. We do not cover any detached garage used or held for use for residential (i.e., dwelling), business, or farming purposes.\n\nA. Coverage A-Building Property\n\nWe insure against direct physical loss by or from flood to:\n\n1. The dwelling at the described location, or for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety.\n2. Additions and extensions attached to and in contact with the dwelling by means of a rigid exterior wall, a solid load-bearing interior wall, a stairway, an elevated walkway, or a roof. At your option, additions and extensions connected by any of these methods may be separately insured. Additions and extensions attached to and in contact with the building by means of a common interior wall that is not a solid load-bearing wall\n3. 3.\n\n4. Materials and supplies to be used for construction, alteration, or repair of the dwelling or a detached garage while the materials and supplies are stored in a fully enclosed building at the described location or on an adjacent property.\n5. A building under construction, alteration, or repair at the described location.\n- a. If the structure is not yet walled or roofed as described in the definition for building (see II.C.6.a) then coverage applies:\n- (1) Only while such work is in progress; or\n- (2) If such work is halted, only for a period of up to 90 continuous days thereafter.\n- b. However, coverage does not apply until the building is walled and roofed if the lowest floor, including the basement floor, of a non-elevated building or the lowest elevated floor of an elevated building is:\n- (1) Below the base flood elevation in Zones AH, AE, A1-A30, AR, AR/AE, AR/ AH, AR/A1-A30, AR/A, AR/AO; or\n- (2) Below the base flood elevation adjusted to include the effect of wave action in Zones VE or V1-V30.\n\nThe lowest floor level is based on the bottom of the lowest horizontal structural member of the floor in Zones VE or V1-V30 or the top of the floor in Zones AH, AE, A1-A30, AR, AR/AE, AR/AH, AR/ A1-A30, AR/A, and AR/AO.\n\n6. A manufactured home or a travel trailer, as described in the II.C.6. If the manufactured home or travel trailer is in a special flood hazard area, it must be anchored in the following manner at the time of the loss:\n- a. By over-the-top or frame ties to ground anchors; or\n- b. In accordance with the manufacturer's specifications; or\n- c. In compliance with the community's floodplain management requirements unless it has been continuously insured by the NFIP at the same described location since September 30, 1982.\n7. The following items of property which are insured under Coverage A only:\n- a. Awnings and canopies;\n- b. Blinds;\n- c. Built-in dishwashers;\n- d. Built-in microwave ovens;\n- e. Carpet permanently installed over unfinished flooring;\n- f. Central air conditioners;\n- g. Elevator equipment;\n- h. Fire sprinkler systems;\n- i. Walk-in freezers;\n- j. Furnaces and radiators;\n- k. Garbage disposal units;\n- l. Hot water heaters, including solar water heaters;\n- m. Light fixtures;\n- n. Outdoor antennas and aerials fastened to buildings;\n- o. Permanently installed cupboards, bookcases, cabinets, paneling, and wallpaper;\n- p. Plumbing fixtures;\n- q. Pumps and machinery for operating pumps;\n- r. Ranges, cooking stoves, and ovens;\n- s. Refrigerators; and\n- t. Wall mirrors, permanently installed.\n8. Items of property below the lowest elevated floor of an elevated postFIRM building located in Zones\n\nA1-A30, AE, AH, AR, AR/A, AR/ AE, AR/AH, AR/A1-A30, V1-V30, or VE, or in a basement regardless of the zone. Coverage is limited to the following:\n\n- a. Any of the following items, if installed in their functioning locations and, if necessary for operation, connected to a power source:\n- (1) Central air conditioners;\n- (2) Cisterns and the water in them;\n- (3) Drywall for walls and ceilings in a basement and the cost of labor to nail it, unfinished and unfloated and not taped, to the framing;\n- (4) Electrical junction and circuit breaker boxes;\n- (5) Electrical outlets and switches;\n- (6) Elevators, dumbwaiters and related equipment, except for related equipment installed below the base flood elevation after September 30, 1987;\n- (7) Fuel tanks and the fuel in them;\n- (8) Furnaces and hot water heaters;\n- (9) Heat pumps;\n- (10) Nonflammable insulation in a basement;\n- (11) Pumps and tanks used in solar energy systems;\n- (12) Stairways and staircases attached to the building, not separated from it by elevated walkways;\n- (13) Sump pumps;\n- (14) Water softeners and the chemicals in them, water filters, and faucets installed as an integral part of the plumbing system;\n- (15) Well water tanks and pumps;\n- (16) Required utility connections for any item in this list; and\n- (17) Footings, foundations, posts, pilings, piers, or other foundation walls and anchorage systems required to support a building.\n- b. Clean-up.\n\nB. Coverage B-Personal Property\n\n1. If you have purchased personal property coverage, we insure against direct physical loss by or from flood to personal property inside a building at the described location, if:\n- a. The property is owned by you or your household family members; and\n- b. At your option, the property is owned by guests or servants.\n2. Personal property is also insured for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety.\n3. Personal property in a building that is not fully enclosed must be secured to prevent flotation out of the building. If the personal property does float out during a flood, it will be conclusively presumed that it was not reasonably secured. In that case, there is no coverage for such property.\n4. Coverage for personal property includes the following property, subject to B.1 above, which is insured under Coverage B only:\n- a. Air conditioning units, portable or window type;\n- b. Carpets, not permanently installed, over unfinished flooring;\n- c. Carpets over finished flooring;\n- d. Clothes washers and dryers;\n- e. 'Cook-out' grills;\n- f. Food freezers, other than walk-in, and food in any freezer; and\n- g. Portable microwave ovens and portable dishwashers.\n\n5. Coverage for items of property below the lowest elevated floor of an elevated post-FIRM building located in Zones A1-A30, AE, AH, AR, AR/A, AR/AE, AR/AH, AR/ A1-A30, V1-V30, or VE, or in a basement regardless of the zone, is limited to the following items, if installed in their functioning locations and, if necessary for oper ation, connected to a power source:\n\n- a. Air conditioning units, portable or window type;\n- b. Clothes washers and dryers; and\n- c. Food freezers, other than walk-in, and food in any freezer.\n6. If you are a tenant and have insured personal property under Coverage B in this policy, we will cover such property, including your cooking stove or range and refrigerator. The policy will also cover improvements made or acquired solely at your expense in the dwelling or apartment in which you reside, but for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability.\n7. If you are the owner of a unit and have insured personal property under Coverage B in this policy, we will also cover your interior walls, floor, and ceiling (not otherwise insured under a flood insurance policy purchased by your condominium association) for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability.\n8. Special Limits. We will pay no more than $2,500 for any one loss to one or more of the following kinds of personal property:\n- a. Artwork, photographs, collectibles, or memorabilia, including but not limited to, porcelain or other figures, and sports cards;\n- b. Rare books or autographed items;\n- c. Jewelry, watches, precious and semi-precious stones, or articles of gold, silver, or platinum;\n- d. Furs or any article containing fur that represents its principal value; or\n- e. Personal property used in any business.\n\n9. We will pay only for the functional value of antiques.\n\nC. Coverage C-Other Coverages\n\n1. Debris Removal\n- a. We will pay the expense to remove non-owned debris that is on or in insured property and debris of insured property anywhere.\n- b. If you or a member of your household perform the removal work, the value of your work will be based on the Federal minimum wage.\n- c. This coverage does not increase the Coverage A or Coverage B limit of liability.\n2. Loss Avoidance Measures\n- a. Sandbags, Supplies, and Labor\n- (1) We will pay up to $1,000 for costs you incur to protect the insured building from a flood or imminent danger of flood, for the following:\n8. (a) Your reasonable expenses to buy:\n9. (i) Sandbags, including sand to fill them;\n10. (ii) Fill for temporary levees;\n11. (iii) Pumps; and\n12. (iv) Plastic sheeting and lumber used in connection with these items.\n13. (b) The value of work, at the Federal minimum wage, that you or a member of your house-hold perform.\n- (2) This coverage for Sandbags, Supplies, and Labor only applies if damage to insured property by or from flood is imminent and the threat of flood damage is apparent enough to lead a person of common prudence to anticipate flood damage. One of the following must also occur:\n15. (a) A general and temporary condition of flooding in the area near the described\n\nlocation must occur, even if the flood does not reach the building; or\n\n- (b) A legally authorized official must issue an evacuation order or other civil order for the community in which the building is located calling for measures to preserve life and property from the peril of flood.\n\nThis coverage does not increase the Coverage A or Coverage B limit of liability.\n\n- b. Property Removed to Safety\n- (1) We will pay up to $1,000 for the reasonable expenses you incur to move insured property to a place other than the described location that contains the property in order to protect it from flood or the imminent danger of flood. Reasonable expenses include the value of work, at the Federal minimum wage, you or a member of your household perform.\n- (2) If you move insured property to a location other than the described location that contains the property in order to protect it from flood or the imminent danger of flood, we will cover such property while at that location for a period of 45 consecutive days from the date you begin to move it there. The personal property that is moved must be placed in a fully enclosed building or otherwise reasonably protected from the elements.\n- (3) Any property removed, including a moveable home described in II.6.b and c, must be placed above ground level or outside of the special flood hazard area.\n- (4) This coverage does not increase the Coverage A or Coverage B limit of liability.\n3. Condominium Loss Assessments\n- a. Subject to III.C.3.b below, if this policy insures a condominium unit, we will pay, up to the Coverage A limit of liability, your share of loss assessments charged against you by the condominium association in accordance with the condominium association's articles of association, declarations and your deed. The assessment must be made because of direct physical loss by or from flood during the policy term, to the unit or to the common elements of the NFIP insured condominium building in which this unit is located.\n- b. We will not pay any loss assessment:\n- (1) Charged against you and the condominium association by any governmental body;\n- (2) That results from a deductible under the insurance purchased by the condominium association insuring common elements;\n- (3) That results from a loss to personal property, including contents of a condomin ium building;\n\n(4) In which the total payment combined under all policies exceeds the maximum amount of coverage available under the Act for a single unit in a condominium building where the unit is insured under both a Dwelling Policy and a RCBAP; or\n\n- (5) On any item of damage that has already been paid under a RCBAP where a single unit in a condominium building is insured by both a Dwelling Policy and a RCBAP.\n- c. Condominium Loss Assessment coverage does not increase the Coverage A Limit of Liability and is subject to the maximum coverage limits available for a single-family dwelling under the Act, payable between all\n\npolicies issued and covering the unit, under the Act.\n\nD. Coverage D-Increased Cost of Compliance\n\n1. General\n\nThis policy pays you to comply with a State or local floodplain management law or ordinance affecting repair or reconstruction of a building suffering flood damage. Compliance activities eligible for payment are: elevation, floodproofing, relocation, or demolition (or any combination of these activities) of your building. Eligible floodproofing activities are limited to:\n\n- a. Non-residential buildings.\n- b. Residential buildings with basements that satisfy FEMA's standards published in the Code of Federal Regulations [44 CFR 60.6(b) or (c)].\n\n2. Limit of Liability\n\nWe will pay you up to $30,000 under this Coverage D-Increased Cost of Compliance, which only applies to policies with building coverage (Coverage A). Our payment of claims under Coverage D is in addition to the amount of coverage which you selected on the application and which appears on the Declarations Page. But the maximum you can collect under this policy for both Coverage A-Building Property and Coverage D-Increased Cost of Compliance cannot exceed the maximum permitted under the Act. We do not charge a separate deductible for a claim under Coverage D.\n\n3. Eligibility\n\n- a. A building insured under Coverage ABuilding Property sustaining a loss caused by a flood as defined by this policy must:\n- (1) Be a 'repetitive loss building.' A repetitive loss building is one that meets the following conditions:\n3. (a) The building is insured by a contract of flood insurance issued under the NFIP.\n4. (b) The building has suffered flood damage on two occasions during a 10-year period which ends on the date of the second loss.\n5. (c) The cost to repair the flood damage, on average, equaled or exceeded 25 percent of the market value of the building at the time of each flood loss.\n6. (d) In addition to the current claim, the NFIP must have paid the previous qualifying claim, and the State or community must have a cumulative, substantial damage provision or repetitive loss provision in its floodplain management law or ordinance being enforced against the building; or\n- (2) Be a building that has had flood damage in which the cost to repair equals or exceeds 50 percent of the market value of the building at the time of the flood. The State or community must have a substantial damage provision in its floodplain management law or ordinance being enforced against the building.\n- b. This Coverage D pays you to comply with State or local floodplain management laws or ordinances that meet the minimum standards of the National Flood Insurance Program found in the Code of Federal Regulations at 44 CFR 60.3. We pay for compliance activities that exceed those standards under these conditions:\n- (1) 3.a.1 above.\n- (2) Elevation or floodproofing in any risk zone to preliminary or advisory base flood elevations provided by FEMA which the State or local government has adopted and is enforcing for flooddamaged buildings in such areas. (This includes compliance activities in B, C, X, or D zones which are being changed to zones with base flood elevations. This also includes compliance activities in zones where base flood elevations are being increased, and a flood-damaged building must comply with the higher advisory base flood elevation.) Increased Cost of Compliance coverage does not apply to situations in B, C, X, or D zones where the community has derived its own elevations and is enforcing elevation or floodproofing requirements for flooddamaged buildings to elevations derived solely by the community.\n- (3) Elevation or floodproofing above the base flood elevation to meet State or local 'free-board' requirements, i.e., that a building must be elevated above the base flood elevation.\n\n- c. Under the minimum NFIP criteria at 44 CFR 60.3(b)(4), States and communities must require the elevation or floodproofing of buildings in unnumbered A zones to the base flood elevation where elevation data is obtained from a Federal, State, or other source. Such compliance activities are eligible for Coverage D.\n- d. Coverage D will pay for the incremental cost, after demolition or relocation, of elevating or floodproofing a building during its rebuilding at the same or another site to meet State or local floodplain management laws or ordinances, subject to Coverage D Exclusion 5.g below.\n- e. Coverage D will pay to bring a flood-damaged building into compliance with State or local floodplain management laws or ordinances even if the building had received a variance before the present loss from the applicable floodplain management requirements.\n\n4. Conditions\n\n- a. When a building insured under Coverage A-Building Property sustains a loss caused by a flood, our payment for the loss under this Coverage D will be for the increased cost to elevate, floodproof, relocate, or demolish (or any combination of these activities) caused by the enforcement of current State or local floodplain management ordinances or laws. Our payment for eligible demolition activities will be for the cost to demolish and clear the site of the building debris or a portion thereof caused by the enforcement of current State or local floodplain management\n\nordinances or laws. Eligible activities for the cost of clearing the site will include those necessary to discontinue utility service to the site and ensure proper abandonment of on-site utilities.\n\n- b. When the building is repaired or rebuilt, it must be intended for the same occupancy as the present building unless otherwise required by current floodplain management ordinances or laws.\n\n5. Exclusions\n\nUnder this Coverage D (Increased Cost of Compliance), we will not pay for:\n\n- a. The cost to comply with any flood plain management law or ordinance in communities participating in the Emergency Program.\n- b. The cost associated with enforcement of any ordinance or law that requires any insured or others to test for, monitor, clean up, remove, contain, treat, detoxify or neutralize, or in any way respond to, or assess the effects of pollutants.\n- c. The loss in value to any insured building due to the\n\n- requirements of any ordinance or law.\n- d. The loss in residual value of the undamaged portion of a building demolished as a consequence of enforcement of any State or local flood plain management law or ordinance.\n- e. Any Increased Cost of Compliance under this Coverage D:\n- (1) Until the building is elevated, floodproofed, demolished, or relocated on the same or to another premises; and\n- (2) Unless the building is elevated, floodproofed, demolished, or relocated as soon as reasonably possible after the loss, not to exceed two years.\n- f. Any code upgrade requirements, e.g., plumbing or electrical wiring, not specifically related to the State or local floodplain management law or ordinance.\n- g. Any compliance activities needed to bring additions or improvements made after the loss occurred into compliance with State or local flood plain management laws or ordinances.\n- h. Loss due to any ordinance or law that you were required to comply with before the current loss.\n- i. Any rebuilding activity to standards that do not meet the NFIP's minimum requirements. This includes any situation where the insured has received from the State or community a variance in connection with the current flood loss to rebuild the property to an elevation below the base flood elevation.\n- j. Increased Cost of Compliance for a garage or carport.\n- k. Any building insured under an NFIP Group Flood Insurance Policy.\n- l. Assessments made by a condo minium association on individual condominium unit owners to pay increased costs of repairing commonly owned buildings after a flood in compliance with State or local floodplain management ordinances or laws.\n6. Other Provisions\n- a. Increased Cost of Compliance coverage will not be included in the calculation to determine whether coverage meets the 80 percent insurance-to-value requirement for replacement cost coverage as set forth in Art. VII.R ('Loss Settlement') of this policy.\n- b. All other conditions and provisions of this policy apply.\n\nWe do not insure any of the following:\n\n1. Personal property not inside a building.\n2. A building, and personal property in it, located entirely in, on, or over water or seaward of mean high tide if it was constructed or substantially improved after September 30, 1982.\n3. Open structures, including a building used as a boathouse or any structure or building into which boats are floated, and personal property located in, on, or over water.\n4. Recreational vehicles other than travel trailers described in the Definitions section (see II.C.6.c) whether affixed to a permanent foundation or on wheels.\n5. Self-propelled vehicles or machines, including their parts and equipment. However, we do cover self-propelled vehicles or machines not licensed for use on public roads that are:\n- a. Used mainly to service the described location; or\n- b. Designed and used to assist handicapped persons, while the vehicles or machines\n8. are inside a building at the described location.\n6. Land, land values, lawns, trees, shrubs, plants, growing crops, or animals.\n7. Accounts, bills, coins, currency, deeds, evidences of debt, medals, money, scrip, stored value cards, postage stamps, securities, bullion, manuscripts, or other valuable papers.\n8. Underground structures and equip ment, including wells, septic tanks, and septic systems.\n9. Those portions of walks, walkways, decks, driveways, patios and other surfaces, all whether protected by a roof or not, located outside the perimeter, exterior walls of the insured building or the building in which the insured unit is located.\n10. Containers, including related equipment, such as, but not limited to, tanks containing gases or liquids.\n11. Buildings or units and all their contents if more than 49 percent of the actual cash value of the building is below ground, unless the lowest level is at or above the base flood elevation and is below\n\n- ground by reason of earth having been used as insulation material in conjunction with energy efficient building techniques.\n12. Fences, retaining walls, seawalls, bulkheads, wharves, piers, bridges, and docks.\n13. Aircraft or watercraft, or their furnishings and equipment.\n\nfilters, pumps, and pipes, wherever located.\n\n15. Property not eligible for flood insurance pursuant to the provisions of the Coastal Barrier Resources Act and the Coastal Barrier Improvement Act and amendments to these acts.\n14. Hot tubs and spas that are not bathroom fixtures, and swimming pools, and their equipment, such as, but not limited to, heaters,\n16. Personal property you own in common with other unit owners comprising the membership of a condominium association.\n\nV. EXCLUSIONS\n\nA. We only pay for direct physical loss by or from flood, which means that we do not pay you for:\n\n1. Loss of revenue or profits;\n2. Loss of access to the insured property or described location;\n3. Loss of use of the insured property or described location;\n4. Loss from interruption of business or production;\n5. Any additional living expenses incurred while the insured building is being repaired or is unable to be occupied for any reason;\n6. The cost of complying with any ordinance or law requiring or\n\nregulating the construction, demolition, remodeling, renovation, or repair of property, including removal of any resulting debris. This exclusion does not apply to any eligible activities we describe in Coverage D-Increased Cost of Compliance; or\n\n7. Any other economic loss you suffer.\n\nB. Flood in Progress. If this policy became effective as of the time of a loan closing, as provided by 44 CFR 61.11(b), we will not pay for a loss caused by a flood that is a continuation of a flood that existed prior to coverage becoming effective.\n\nIn all other circumstances, we will not pay for a loss caused by a flood that is a continuation of a flood that existed on or before the day you submitted the application for coverage under this policy and the full amount due. We will determine the date of application using 44 CFR 61.11(f).\n\nC. We do not insure for loss to property caused directly by earth movement even if the earth movement is caused by flood. Some examples of earth movement that we do not cover are:\n\n1. Earthquake;\n2. Landslide;\n3. Land subsidence;\n4. Sinkholes;\n5. Destabilization or movement of land that results from accumulation of water in subsurface land area; or\n6. Gradual erosion.\n\nWe do, however, pay for losses from mudflow and land subsidence as a result of erosion that are specifically insured under our definition of flood (see II.B.1.c and II.B.2).\n\nD. We do not insure for direct physical loss caused directly or indirectly by any of the following:\n\n1. The pressure or weight of ice;\n2. Freezing or thawing;\n3. Rain, snow, sleet, hail, or water spray;\n4. Water, moisture, mildew, or mold damage that results primarily from any condition:\n- a. Substantially confined to the dwelling; or\n- b. That is within your control, including but not limited to:\n- (1) Design, structural, or mechanical defects;\n- (2) Failure, stoppage, or breakage of water or sewer lines, drains, pumps, fixtures, or equipment; or\n- (3) Failure to inspect and maintain the property after a flood recedes;\n5. Water or water-borne material that:\n- a. Backs up through sewers or drains;\n- b. Discharges or overflows from a sump, sump pump, or related equipment; or\n- c. Seeps or leaks on or through the insured property;\n\nunless there is a flood in the area and the flood is the proximate cause of the sewer or drain backup, sump pump discharge or overflow, or the seepage of water;\n\n6. The pressure or weight of water unless there is a flood in the area and the flood is the proximate cause of the damage from the pressure or weight of water;\n7. Power, heating, or cooling failure unless the failure results from direct physical loss by or from flood to power, heating, or cooling equipment on the described location;\n8. Theft, fire, explosion, wind, or windstorm;\n9. Anything you or any member of your household do or conspire\n\nto do to deliberately cause loss by flood; or\n\n10. Alteration of the insured property that significantly increases the risk of flooding.\n\nE. We do not insure for loss to any building or personal property located on land leased from the Federal Government, arising from or incident to the flooding of the land by the Federal Government, where the lease expressly holds the Federal Government harmless under flood insurance issued under any Federal Government program.\n\nF. We do not pay for the testing for or monitoring of pollutants unless required by law or ordinance.\n\nVI. DEDUCTIBLES\n\nA. When a loss is insured under this policy, we will pay only that part of the loss that exceeds your deductible amount, subject to the limit of liability that applies. The deductible amount is shown on the Declarations Page.\n\nB. In each loss from flood, separate deductibles apply to the building and personal property insured by this policy.\n\n- C. The deductible does NOT apply to:\n1. III.C.2. Loss Avoidance Measures;\n2. III.C.3. Condominium Loss Assessments; or\n3. III.D. Increased Cost of Compliance.\n\nHowever, when a building under construction, alteration, or repair does not have at least two rigid exterior walls and a fully secured roof at the time of loss, your deductible amount will be two times the deductible that would otherwise apply to a completed building.\n\nA. Pair and Set Clause\n\nIn case of loss to an article that is part of a pair or set, we will have the option of paying you:\n\n1. An amount equal to the cost of replacing the lost, damaged, or destroyed article, minus its depreciation; or\n2. The amount that represents the fair proportion of the total value of the pair or set that the lost, damaged, or destroyed article bears to the pair or set.\n\nB. Other Insurance\n\n1. If a loss insured by this policy is also insured by other insurance that includes flood coverage not issued under the Act, we will not pay more than the amount of insurance you are entitled to for lost, damaged, or destroyed property insured under this policy subject to the following:\n- a. We will pay only the proportion of the loss that the amount of insurance that applies under this policy bears to the total amount of insurance covering the loss, unless VII.B.1.b or c immediately below applies.\n- b. If the other policy has a provision stating that it is excess insurance, this policy will be primary.\n- c. This policy will be primary (but subject to its own deductible)\n\nup to the deductible in the other flood policy (except another policy as described in VII.B.1.b above). When the other deductible amount is reached, this policy will participate in the same proportion that the amount of insurance under this policy bears to the total amount of both policies, for the remainder of the loss.\n\n2. If there is other insurance issued under the Act in the name of your condominium association covering the same property insured by this policy, then this policy will be in excess over the other insurance, except where a condominium loss assessment to the unit owner results from a loss sustained by the condominium association that was not reimbursed under a flood insurance policy written in the name of the association under the Act because the building was not, at the time of loss, insured for an amount equal to the lesser of:\n- a. 80 percent or more of its full replacement cost; or\n\n- b. The maximum amount of insurance permitted under the Act.\n3. The combined coverage payment under the other NFIP insurance and this policy cannot exceed the maximum coverage available under the Act, of $250,000 per single unit.\n\nC. Amendments, Waivers, Assignment\n\nThis policy cannot be changed, nor can any of its provisions be waived, without the express written consent of the Federal Insurance Administrator. No action we take under the terms of this policy constitutes a waiver of any of our rights. You may assign this policy in writing when you transfer title of your property to someone else except under these conditions:\n\n- a. When this policy insures only personal property; or\n- b. When this policy insures a building under construction.\n- D. Insufficient Premium or Rating Information\n1. Applicability. The following provisions apply to all instances where the premium paid on this policy is insufficient or where the rating information is insufficient, such as where an Elevation Certificate is not provided.\n2. Reforming the Policy with Re\u00ad duced Coverage. Except as otherwise provided in VII.D.1, if the premium we received from you was not sufficient to buy the kinds and amounts of coverage you requested, we will provide only the kinds and\n\namounts of coverage that can be purchased for the premium payment we received.\n\n- a. For the purpose of determining whether your premium payment is sufficient to buy the kinds and amounts of coverage you requested, we will first deduct the costs of all applicable fees and surcharges.\n- b. If the amount paid, after deducting the costs of all applicable fees and surcharges, is not sufficient to buy any amount of coverage, your payment will be refunded. Unless the policy is reformed to increase the coverage amount to the amount originally requested pursuant to VII.D.3, this policy will be cancelled, and no claims will be paid under this policy.\n- c. Coverage limits on the reformed policy will be based upon the amount of premium submitted per type of coverage, but will not exceed the amount originally requested.\n3. Discovery of Insufficient Premium or Rating Information. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, the policy will\n\nbe reformed as described in VII.D.2. You have the option of increasing the amount of coverage resulting from this reformation to the amount you requested as follows:\n\n- a. Insufficient Premium. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, we will send you, and any mortgagee or trustee known to us, a bill for the required additional premium for the current policy term (or that portion of the current policy term following any endorsement changing the amount of coverage). If it is discovered that the initial amount charged to you for any fees or surcharges is incorrect, the difference will be added or deducted, as applicable, to the total amount in this bill.\n- (1) If you or the mortgagee or trustee pays the additional premium amount due within 30 days from the date of our bill, we will reform the policy to increase the amount of coverage to the originally requested amount, effective to the beginning\n\nof the current policy term (or subsequent date of any endorsement changing the amount of coverage).\n\n- (2) If you or the mortgagee or trustee do not pay the additional amount due within 30 days of the date of our bill, any flood insurance claim will be settled based on the reduced amount of coverage.\n- (3) As applicable, you have the option of paying all or part of the amount due out of a claim payment based on the originally requested amount of coverage.\n- b. Insufficient Rating Inform\u00ad ation. If we determine that the rating information we have is insufficient and prevents us from calculating the additional premium, we will ask you to send the required information. You must submit the information within 60 days of our request.\n- (1) If we receive the information within 60 days of our request, we will determine the amount of additional premium for the current\n\npolicy term, and follow the procedure in VII.D.3.a above.\n\n- (2) If we do not receive the information within 60 days of our request, no claims will be paid until the requested information is provided. Coverage will be limited to the amount of coverage that can be purchased for the payments we received, as determined when the requested information is provided.\n4. Coverage Increases. If we do not receive the amounts requested in VII.D.3.a or the additional information requested in VII.D.3.b by the date it is due, the amount of coverage under this policy can only be increased by endorsement subject to the appropriate waiting period. However, no coverage increases will be allowed until you have provided the information requested in VII.D.3.b.\n5. Falsifying Information. However, if we find that you or your agent intentionally did not tell us, or falsified any important fact or circumstance or did anything fraudulent relating to this insurance, the provisions of VIII.A apply.\n\nE. Policy Renewal\n\n1. This policy will expire at 12:01 a.m. on the last day of the policy term.\n2. We must receive the payment of the appropriate renewal premium within 30 days of the expiration date.\n3. If we find, however, that we did not place your renewal notice into the U.S. Postal Service, or if we did mail it, we made a mistake, e.g., we used an incorrect, incomplete, or illegible address, which delayed its delivery to you before the due date for the renewal premium, then we will follow these procedures:\n- a. If you or your agent notified us, not later than one year after the date on which the payment of the renewal premium was due, of non-receipt of a renewal notice before the due date for the renewal premium, and we determine that the circumstances in the preceding paragraph apply, we will mail a second bill providing a revised due date, which will be 30 days after the date on which the bill is mailed.\n- b. If we do not receive the premium requested in the second bill by the revised due date, then we will not renew the policy. In that case, the policy will remain an expired policy as of the expiration date shown on the Declarations Page.\n4. In connection with the renewal of this policy, we may ask you during the policy term to recertify, on a Recertification Questionnaire we will provide to you, the rating information used to rate your most recent application for or renewal of insurance.\n- F. Conditions Suspending or Restricting Insurance\n\nWe are not liable for loss that occurs while there is a hazard that is increased by any means within your control or knowledge.\n\n- G. Requirements in Case of Loss\n\nIn case of a flood loss to insured property, you must:\n\n1. Give prompt written notice to us.\n2. As soon as reasonably possible, separate the damaged and\n\nundamaged property, putting it in the best possible order so that we may examine it.\n\n3. Prepare an inventory of damaged property showing the quantity, description, actual cash value, and amount of loss. Attach all bills, receipts, and related documents.\n4. Within 60 days after the loss, send us a proof of loss, which is your statement of the amount you are claiming under the policy signed and sworn to by you, and which furnishes us with the following information:\n- a. The date and time of loss;\n- b. A brief explanation of how the loss happened;\n- c. Your interest (for example, 'owner') and the interest, if any, of others in the damaged property;\n- d. Details of any other insurance that may cover the loss;\n- e. Changes in title or occupancy of the insured property during the term of the policy;\n- f. Specifications of damaged buildings and detailed repair estimates;\n- g. Names of mortgagees or anyone else having a lien,\n\ncharge, or claim against the insured property;\n\n- h. Details about who occupied any insured building at the time of loss and for what purpose; and\n- i. The inventory of damaged personal property described in G.3 above.\n5. In completing the proof of loss, you must use your own judgment concerning the amount of loss and justify that amount.\n6. You must cooperate with the adjuster or representative in the investigation of the claim.\n7. The insurance adjuster whom we hire to investigate your claim may furnish you with a proof of loss form, and she or he may help you complete it. However, this is a matter of courtesy only, and you must still send us a proof of loss within 60 days after the loss even if the adjuster does not furnish the form or help you complete it.\n8. We have not authorized the adjuster to approve or disapprove claims or to tell you whether we will approve your claim.\n9. At our option, we may accept the adjuster's report of the loss instead of your proof of loss. The adjuster's report will include information about your loss and the damages you sustained. You must sign the adjuster's report. At our option, we may require you to swear to the report.\n\nH. Our Options After a Loss\n\nOptions we may, in our sole discretion, exercise after loss include the following:\n\n1. At such reasonable times and places that we may designate, you must:\n- a. Show us or our representative the damaged property;\n- b. Submit to examination under oath, while not in the presence of another insured, and sign the same; and\n- c. Permit us to examine and make extracts and copies of:\n- (1) Any policies of property insurance insuring you against loss and the deed establishing your ownership of the insured real property;\n- (2) Condominium association documents including the Declarations of the condominium, its Articles of Association or Incorporation, Bylaws, rules and regulations, and other relevant documents if you are a unit owner in a condominium building; and\n- (3) All books of accounts, bills, invoices and other vouchers, or certified copies pertaining to the damaged property if the originals are lost.\n2. We may request, in writing, that you furnish us with a complete\n\ninventory of the lost, damaged or destroyed property, including:\n\n- a. Quantities and costs;\n- b. Actual cash values or replacement cost (whichever is appropriate);\n- c. Amounts of loss claimed;\n- d. Any written plans and specifications for repair of the damaged property that you can reasonably make available to us; and\n- e. Evidence that prior flood damage has been repaired.\n3. If we give you written notice within 30 days after we receive your signed, sworn proof of loss, we may:\n- a. Repair, rebuild, or replace any part of the lost, damaged, or destroyed property with material or property of like kind and quality or its functional equivalent; and\n- b. Take all or any part of the damaged property at the value that we agree upon or its appraised value.\n- I. No Benefit to Bailee\n\nNo person or organization, other than you, having custody of insured property will benefit from this insurance.\n\nJ. Loss Payment\n\n1. We will adjust all losses with you. We will pay you unless some other person or entity is named in the policy or is legally entitled to receive payment. Loss will be payable 60 days after we receive your proof of loss (or within 90 days after the insurance adjuster files the adjuster's report signed and sworn to by you in lieu of a proof of loss) and:\n- a. We reach an agreement with you;\n- b. There is an entry of a final judgment; or\n- c. There is a filing of an appraisal award with us, as provided in VII.M.\n2. If we reject your proof of loss in whole or in part you may:\n- a. Accept our denial of your claim;\n- b. Exercise your rights under this policy; or\n- c. File an amended proof of loss as long as it is filed within 60 days of the date of the loss.\n\nK. Abandonment\n\nYou may not abandon to us damaged or undamaged property insured under this policy.\n\nL. Salvage\n\nWe may permit you to keep damaged property insured under this policy after a loss, and we will reduce the amount of the loss proceeds payable to you under the policy by the value of the salvage.\n\nM. Appraisal\n\nIf you and we fail to agree on the actual cash value or, if applicable, replacement cost of your damaged property to settle upon the amount of loss, then either may demand an appraisal of the loss. In this event, you and we will each choose a competent and impartial appraiser within 20 days after receiving a written request from the other. The two appraisers will choose an umpire. If they cannot agree upon an umpire within 15 days, you or we may request that the choice be made by a judge of a court of record in the state where the insured property is located. The appraisers will separately state the actual cash value, the replacement cost, and the amount of loss to each item. If the appraisers submit a written report of an agreement to us, the amount agreed upon will be the amount of loss. If they fail to agree, they will submit their differences to the umpire. A decision agreed to by any two will set the amount of actual cash value and loss, or if it applies, the replacement cost and loss.\n\nEach party will:\n\n1. Pay its own appraiser; and\n2. Bear the other expenses of the appraisal and umpire equally.\n\nN. Mortgage Clause\n\n1. The word 'mortgagee' includes trustee.\n\n2. Any loss payable under Coverage A-Building Property will be paid to any mortgagee of whom we have actual notice, as well as any other mortgagee or loss payee determined to exist at the time of loss, and you, as interests appear. If more than one mortgagee is named, the order of payment will be the same as the order of precedence of the mortgages.\n3. If we deny your claim, that denial will not apply to a valid claim of the mortgagee, if the mortgagee:\n- a. Notifies us of any change in the ownership or occupancy, or substantial change in risk of which the mortgagee is aware;\n- b. Pays any premium due under this policy on demand if you have neglected to pay the premium; and\n- c. Submits a signed, sworn proof of loss within 60 days after receiving notice from us of your failure to do so.\n\n4. All of the terms of this policy apply to the mortgagee.\n5. The mortgagee has the right to receive loss payment even if the mortgagee has started foreclosure or similar action on the building.\n6. If we decide to cancel or not renew this policy, it will continue in effect for the benefit of the mortgagee only for 30 days after we notify the mortgagee of the cancellation or non-renewal.\n7. If we pay the mortgagee for any loss and deny payment to you, we are subrogated to all the rights of the mortgagee granted under the mortgage on the property. Subrogation will not impair the right of the mortgagee to recover the full amount of the mortgagee's claim.\n- O. Suit Against Us\n\nYou may not sue us to recover money under this policy unless you have complied with all the requirements of the policy. If you do sue, you must start the suit within one year after the date of the written denial of all or part of the claim, and you must file the suit in the United States District Court of the district in which the insured property was located at the time of loss. This requirement applies to any claim that you may have under this policy and to any dispute that you may have arising out of the handling of any claim under the policy.\n\n- P. Subrogation\n\nWhenever we make a payment for a loss under this policy, we are subrogated to your right to recover for that loss from any other person. That means that your right to recover for a loss that was partly or totally caused by someone else is automatically transferred to us, to the extent that we have paid you for the loss. We may require\n\nyou to acknowledge this transfer in writing. After the loss, you may not give up our right to recover this money or do anything that would prevent us from recovering it. If you make any claim against any person who caused your loss and recover any money, you must pay us back first before you may keep any of that money.\n\n- Q. Continuous Lake Flooding\n1. If an insured building has been flooded by rising lake waters continuously for 90 days or more and it appears reasonably certain that a continuation of this flooding will result in an insured loss to the insured building equal to or greater than the building policy limits plus the deductible or the maximum payable under the policy for any one building loss, we will pay you the lesser of these two amounts without waiting for the further\n\ndamage to occur if you sign a release agreeing:\n\n- a. To make no further claim under this policy;\n- b. Not to seek renewal of this policy;\n- c. Not to apply for any flood insurance under the Act for property at the described location;\n- d. Not to seek a premium refund for current or prior terms.\n\nIf the policy term ends before the insured building has been flooded continuously for 90 days, the provisions of this paragraph Q.1 will apply when the insured building suffers a covered loss before the policy term ends.\n\n2. If your insured building is subject to continuous lake flooding from a closed basin lake, you may elect to file a claim under either paragraph Q.1 above or Q.2 (A 'closed basin lake' is a natural lake from which water leaves primarily through evaporation and whose surface area now exceeds or has exceeded one square mile at any time in the recorded past. Most of the nation's closed basin lakes are in the western half of the United\n\nStates where annual evaporation exceeds annual precipitation and where lake levels and surface areas are subject to considerable fluctuation due to wide variations in the climate. These lakes may overtop their basins on rare occasions.) Under this paragraph Q.2, we will pay your claim as if the building is a total loss even though it has not been continuously inundated for 90 days, subject to the following conditions:\n\n- a. Lake floodwaters must damage or imminently threaten to damage your building.\n- b. Before approval of your claim, you must:\n- (1) Agree to a claim payment that reflects your buying back the salvage on a negotiated basis; and\n- (2) Grant the conservation easement described in FEMA's 'Policy Guidance for Closed Basin Lakes' to be recorded in the office of the local recorder of deeds. FEMA, in consultation with the community in which the property is located, will identify on a map an area or areas\n\nof special consideration (ASC) in which there is a potential for flood damage from continuous lake flooding. FEMA will give the community the agreedupon map showing the ASC. This easement will only apply to that portion of the property in the ASC. It will allow certain agricultural and recreational uses of the land. The only structures it will allow on any portion of the property within the ASC are certain simple agricultural and recreational structures. If any of these allowable structures are insurable buildings under the NFIP and are insured under the NFIP, they will not be eligible for the benefits of this paragraph Q.2. If a U.S. Army Corps of Engineers certified flood control project or otherwise certified flood control project later protects the property, FEMA will, upon request, amend the ASC to remove areas protected by those projects. The restrictions of the easement will then no longer apply to any portion of the\n\n- property removed from the ASC; and\n- (3) Comply with paragraphs Q.1.a through Q.1.d above.\n- c. Within 90 days of approval of your claim, you must move your building to a new location outside the ASC. FEMA will give you an additional 30 days to move if you show there is sufficient reason to extend the time.\n- d. Before the final payment of your claim, you must acquire an elevation certificate and a floodplain development permit from the local floodplain administrator for the new location of your building.\n- e. Before the approval of your claim, the community having jurisdiction over your building must:\n- (1) Adopt a permanent land use ordinance, or a temporary moratorium for a period not to exceed 6 months to be followed immediately by a permanent land use ordinance that is consistent with the provisions specified in the easement required in paragraph Q.2.b above;\n\n- (2) Agree to declare and report any violations of this ordinance to FEMA so that under Section 1316 of the National Flood Insurance Act of 1968, as amended, flood insurance to the building can be denied; and\n- (3) Agree to maintain as deedrestricted, for purposes compatible with open space or agricultural or recreational use only, any affected property the community acquires an interest in. These deed restrictions must be consistent with the provisions of paragraph Q.2.b above, except that, even if a certified project protects the property, the land use restrictions continue to apply if the property was acquired under the Hazard Mitigation Grant Program or the Flood Mitigation Assistance Program. If a non-profit land trust organization receives the property as a donation, that organization must maintain the property as deed-restricted, consistent\n3. with the provisions of paragraph Q2.b above.\n- f. Before the approval of your claim, the affected State must take all action set forth in FEMA's 'Policy Guidance for Closed Basin Lakes.'\n- g. You must have NFIP flood insurance coverage con tinuously in effect from a date established by FEMA until you file a claim under paragraph Q.2. If a subsequent owner buys NFIP insurance that goes into effect within 60 days of the date of transfer of title, any gap in coverage during that 60-day period will not be a violation of this continuous coverage requirement. For the purpose of honoring a claim under this paragraph Q.2, we will not consider to be in effect any increased coverage that became effective after the date established by FEMA. The exception to this is any increased coverage in the amount suggested by your insurer as an inflation adjustment.\n- h. This paragraph Q.2 will be in effect for a community when the FEMA Regional Administrator for the affected region provides\n\nto the community, in writing, the following:\n\n- (1) Confirmation that the community and the State are in compliance with the conditions in paragraphs Q.2.e and Q.2.f above; and\n\n(2) The date by which you must have flood insurance in effect.\n\nR. Loss Settlement\n\n1. Introduction\n\nThis policy provides three methods of settling losses: Replacement Cost, Special Loss Settlement, and Actual Cash Value. Each method is used for a different type of property, as explained in paragraphs a-c below.\n\n- a. Replacement Cost Loss Set tlement , described in R.2 below, applies to a singlefamily dwelling provided:\n\n(1) It is your principal residence; and\n\n- (2) At the time of loss, the amount of insurance in this policy that applies to the dwelling is 80 percent or more of its full replacement cost immediately before the loss, or is the maximum amount of insurance available under the NFIP.\n- b. Special Loss Settlement , described in R.3 below, applies to a single-family dwelling that is a manufactured or mobile home or a travel trailer.\n- c. Actual Cash Value Loss Settlement applies to a single-family dwelling not subject to replacement cost or special loss settlement, and to the property listed in R.4 below.\n2. Replacement Cost Loss Settlement\n\nThe following loss settlement conditions apply to a single-family dwelling described in R.1.a above:\n\n- a. We will pay to repair or replace the damaged dwelling after application of the deductible and without deduction for depreciation, but not more than the least of the following amounts:\n- (1) The building limit of liability shown on your Declarations Page;\n- (2) The replacement cost of that part of the dwelling damaged, with materials of like kind and quality and for like use; or\n- (3) The necessary amount actually spent to repair or replace the damaged part of the dwelling for like use.\n- b. If the dwelling is rebuilt at a new location, the cost described above is limited to the cost that would have been incurred if the dwelling had been rebuilt at its former location.\n- c. When the full cost of repair or replacement is more than $1,000, or more than 5 percent of the whole amount of insurance that applies to the dwelling, we will not be liable for any loss under R.2.a above or R.4.a.2 below unless and until actual repair or replacement is completed.\n- d. You may disregard the replacement cost conditions above and make claim under this policy for loss to dwellings on an actual cash value basis. You may then make claim for any additional liability according to R.2.a, b, and c above, provided you notify us of your intent to do so within 180 days after the date of loss.\n- e. If the community in which your dwelling is located has been converted from the Emergency Program to the Regular Program during the current policy term, then we will consider the maximum amount of available NFIP insurance to be the amount that was available at the beginning of the current policy term.\n3. Special Loss Settlement\n- a. The following loss settlement conditions apply to a single-family dwelling that:\n- (1) is a manufactured or mobile home or a travel trailer, as defined in II.C.6.b and c;\n\n- (2) is at least 16 feet wide when fully assembled and has an area of at least 600 square feet within its perimeter walls when fully assembled; and\n- (3) is your principal residence as specified in R.1.a.1 above.\n- b. If such a dwelling is totally destroyed or damaged to such an extent that, in our judgment, it is not economically feasible to repair, at least to its pre-damage condition, we will, at our discretion pay the least of the following amounts:\n- (1) The lesser of the replacement cost of the dwelling or 1.5 times the actual cash value; or\n- (2) The building limit of liability shown on your Declarations Page.\n- c. If such a dwelling is partially damaged and, in our judgment, it is economically feasible to repair it to its pre-damage condition, we will settle the loss according to the Replacement Cost conditions in R.2 above.\n\n4. Actual Cash Value Loss Settlement\n\nThe types of property noted below are subject to actual cash value (or in the case of R.4.a.2., below, proportional) loss settlement.\n\n- a. A dwelling, at the time of loss, when the amount of insurance on the dwelling is both less than 80 percent of its full replacement cost immediately before the loss and less than the maximum amount of insurance available under the NFIP. In that case, we will pay the greater of the following amounts, but not more than the amount of insurance that applies to that dwelling:\n- (1) The actual cash value, as defined in II.C.2, of the damaged part of the dwelling; or\n- (2) A proportion of the cost to repair or replace the damaged part of the dwelling, without deduction for physical depreciation and after application of the deductible.\n\nThis proportion is determined as follows: If 80 percent of the full replacement cost of the dwelling is less than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the amount of insurance that represents 80 percent of its full replacement cost. But if 80 percent of the full replacement cost of the dwelling is greater than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the maximum amount of insurance available under the NFIP.\n\n- b. A two-, three-, or four-family dwelling.\n- c. A unit that is not used exclusively for singlefamily dwelling purposes.\n- d. Detached garages.\n- e. Personal property.\n- f. Appliances, carpets, and carpet pads.\n- g. Outdoor awnings, outdoor antennas or aerials of any type, and other outdoor equipment.\n- h. Any property insured under this policy that is abandoned after a loss and remains as debris anywhere on the described location.\n- i. A dwelling that is not your principal residence.\n\n5. Amount of Insurance Required\n\nTo determine the amount of insurance required for a dwelling immediately before the loss, we do not include the value of:\n\n- a. Footings, foundations, piers, or any other structures or devices that are below the undersurface of the lowest basement floor and support all or part of the dwelling;\n- b. Those supports listed in R.5.a above, that are below the surface of the ground inside the foundation walls if there is no basement; and\n- c. Excavations and underground flues, pipes, wiring, and drains.\n\nNote: The Coverage D-Increased Cost of Compliance limit of liability is not included in the determination of the amount of insurance required.\n\nVIII. POLICY NULLIFICATION, CANCELLATION, AND NON-RENEWAL\n\n- A. Policy Nullification for Fraud, Misrepresentation, or Making False Statements\n1. With respect to all insureds under this policy, this policy is void and has no legal force and effect if at any time, before or after a loss, you or any other insured or your agent have, with respect to this policy or any other NFIP insurance:\n- a. Concealed or misrepresented any material fact or circumstance;\n- b. Engaged in fraudulent conduct; or\n- c. Made false statements.\n2. Policies voided under A.1 cannot be renewed or replaced by a new NFIP policy.\n3. Policies are void as of the date the acts described in A.1 above were committed.\n4. Fines, civil penalties, and imprisonment under applicable Federal laws may also apply to the acts of fraud or concealment described above.\n- B. Policy Nullification for Reasons Other Than Fraud\n1. This policy is void from its inception, and has no legal force or effect, if:\n- a. The property listed on the application is located in a community that was not participating in the NFIP on this policy's inception date and did not join or reenter the program during the policy term and before the loss occurred;\n- b. The property listed on the application is otherwise not eligible for coverage under the NFIP at the time of the initial application;\n- c. You never had an insurable interest in the property listed on the application;\n- d. You provided an agent with an application and payment, but the payment did not clear; or\n- e. We receive notice from you, prior to the policy effective date, that you have determined not to take the policy and you are not subject to a requirement to obtain and maintain flood insurance pursuant to any statute, regulation, or contract.\n2. In such cases, you will be entitled to a full refund of all premium, fees, and surcharges received. However, if a claim was paid for a policy that is void, the claim payment must be returned to FEMA or offset from the premiums to be refunded before the refund will be processed.\n\nC. Cancellation of the Policy by You\n\n1. You may cancel this policy in accordance with the terms and conditions of this policy and the applicable rules and regulations of the NFIP.\n2. If you cancel this policy, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP.\n\nD. Cancellation of the Policy by Us\n\n1. Cancellation for Underpayment of Amounts Owed on Policy. This policy will be cancelled, pursuant to VII.D.2, if it is determined that the premium amount you paid is not sufficient to buy any amount of coverage, and you do not pay the additional amount of premium owed to increase the coverage to the originally requested amount within the required time period.\n\n2. Cancellation Due to Lack of an Insurable Interest.\n\n- a. If you no longer have an insurable interest in the insured property, we will cancel this policy. You will cease to have an insurable interest if:\n- (1) For building coverage, the building was sold, destroyed, or removed.\n- (2) For contents coverage, the contents were sold or transferred ownership, or the contents were\n\ncompletely removed from the described location.\n\n- b. If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the applicable rules and regulations of the NFIP.\n\n3. Cancellation of Duplicate Policies\n\n- a. Except as allowed under Article I.G, your property may not be insured by more than one NFIP policy, and payment for damages to your property will only be made under one policy.\n- b. Except as allowed under Article I.G, if the property is insured by more than one NFIP policy, we will cancel all but one of the policies. The policy, or policies, will be selected for cancellation in accordance with 44 CFR 62.5 and the applicable rules and guidance of the NFIP.\n- c. If this policy is cancelled pursuant to VIII.D.4.b, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP.\n\n4. Cancellation Due to Physical Alteration of Property\n\n- a. If the insured building has been physically altered in such a manner that it is no longer eligible for flood insurance coverage, we will cancel this policy.\n\nof this policy and the applicable rules and regulations of the NFIP.\n\nE. Non-Renewal of the Policy by Us\n\nYour policy will not be renewed if:\n\n1. The community where your insured property is located is suspended or stops participating in the NFIP;\n- b. If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the terms and conditions\n2. Your building is otherwise ineligible for flood insurance under the Act;\n3. You have failed to provide the information we requested for the purpose of rating the policy within the required deadline.\n\nIX. LIBERALIZATION CLAUSE\n\nIf we make a change that broadens your coverage under this edition of our policy, but does not require any additional premium, then that change will automatically apply to your insurance as of the date we implement the change, provided that this implementation date falls within 60 days before or during the policy term stated on the Declarations Page.\n\nX. WHAT LAW GOVERNS\n\nThis policy and all disputes arising from the insurer's policy issuance, policy administration, or the handling of any claim under the policy are governed exclusively by the flood insurance regulations issued by FEMA, the National Flood Insurance Act of 1968, as amended (42 U.S.C. 4001, et seq.), and Federal common law.\n\nIn Witness Whereof, we have signed this policy below and hereby enter into this Insurance Agreement.\n\nDeputy Associate Administrator Federal Insurance and Mitigation Administration", + "markdown": "National Flood Insurance Program\n\n## Dwelling Form\n\nStandard Flood Insurance Policy\n\nF-122 / October 2021\n\n\n\nStandard Flood Insurance Policy\n\n## Dwelling Form\n\nPlease read the policy carefully. The flood insurance provided is subject to limitations, restrictions, and exclusions.\n\n## I. AGREEMENT\n\n- A. This policy insures the following types of property only:\n1. A one to four family residential building, not under a condominium form of ownership;\n- E. This policy insures only one building. If you own more than one building, coverage will apply to the single building specifically described in the Flood Insurance Application.\n2. A single-family dwelling unit in a condominium building; and\n3. Personal property in a building.\n- B. The Federal Emergency Management Agency (FEMA) provides flood insurance under the terms of the National Flood Insurance Act of 1968 and its amendments, and Title 44 of the Code of Federal Regulations.\n- C. We will pay you for direct physical loss by or from flood to your insured property if you:\n1. Have paid the full amount due (including applicable premiums, surcharges, and fees);\n2. Comply with all terms and conditions of this policy; and\n3. Have furnished accurate information and statements.\n- D. We have the right to review the information you give us at any time and revise your policy based on our review.\n- F. Subject to the exception in I.G below, multiple policies with building coverage cannot be issued to insure a single building to one insured or to different insureds, even if separate policies were issued through different NFIP insurers. Payment for damages may only be made under a single policy for building damages under Coverage ABuilding Property.\n- G. A Dwelling Form policy with building coverage may be issued to a unit owner in a condominium building that is also insured under a Residential Condominium\n\nBuilding Association Policy (RCBAP). However, no more than $250,000 may be paid in combined benefits for a single unit under the Dwelling Form policy and the RCBAP. We will only pay for damage once. Items of damage paid for under an RCBAP cannot also be claimed under the Dwelling Form policy.\n\n## II. DEFINITIONS\n\nA. In this policy, 'you' and 'your' refer to the named insured(s) shown on the Declarations Page of this policy and the spouse of the named insured, if a resident of the same household. Insured(s) also includes: Any mortgagee and loss payee named in the Application and Declarations Page, as well as any other mortgagee or loss payee determined to exist at the time of loss, in the order of precedence. 'We,' 'us,' and 'our' refer to the insurer.\n\nSome definitions are complex because they are provided as they appear in the law or regulations, or result from court cases.\n\n- B. Flood , as used in this flood insurance policy, means:\n1. A general and temporary condition of partial or complete inundation of two or more acres of normally dry land area or of two or more properties (one of which is your property) from:\n- a. Overflow of inland or tidal waters;\n- b. Unusual and rapid accumulation or runoff of surface waters from any source;\n- c. Mudflow.\n2. Collapse or subsidence of land along the shore of a lake or similar body of water as a result of erosion\n\nor undermining caused by waves or currents of water exceeding anticipated cyclical levels that result in a flood as defined in B.1.a above.\n\nC. The following are the other key definitions we use in this policy:\n\n1. Act. The National Flood Insurance Act of 1968 and any amendments to it.\n2. Actual Cash Value. The cost to replace an insured item of property at the time of loss, less the value of its physical depreciation.\n3. Application. The statement made and signed by you or your agent in applying for this policy. The application gives information we use to determine the eligibility of the risk, the kind of policy to be issued, and the correct premium payment. The application is part of this flood insurance policy.\n4. Base Flood. A flood having a one percent chance of being equaled or exceeded in any given year.\n5. Basement. Any area of a building, including any sunken room or sunken portion of a room, having its floor below ground level on all sides.\n6. Building\n- a. A structure with two or more outside rigid walls and a fully secured roof that is affixed to a permanent site;\n- b. A manufactured home, also known as a mobile home, is a structure: built on a permanent chassis, transported to its site in one or more sections, and affixed to a permanent foundation; or\n- c. A travel trailer without wheels, built on a chassis and affixed to a permanent foundation, that is regulated under the community's floodplain management and building ordinances or laws.\n\nBuilding does not mean a gas or liquid storage tank, shipping container, or a recreational vehicle, park trailer, or other similar vehicle, except as described in C.6.c above.\n\n7. Cancellation. The ending of the insurance coverage provided by this policy before the expiration date.\n8. Condominium. That form of ownership of one or more buildings in which each unit owner has an undivided interest in common elements.\n9. Condominium Association. The entity made up of the unit owners responsible for the maintenance and operation of:\n- a. Common elements owned in undivided shares by unit owners; and\n- b. Other buildings in which the unit owners have use rights; where membership in the entity is a required condition of ownership.\n10. Condominium Building. A type of building for which the form of ownership is one in which each unit owner has an undivided interest in common elements of the building.\n11. Declarations Page. A computer-generated summary of information you provided in your application for insurance. The Declarations Page also describes the term of the policy, limits of coverage, and displays the premium and our name. The Declarations Page is a part of this flood insurance policy.\n12. Deductible. The amount of an insured loss that is your responsibility and that is incurred by you before any amounts are paid for the insured loss under this policy.\n13. Described Location. The location where the insured building(s) or personal property are found. The described location is shown on the Declarations Page.\n14. D irect Physical Loss By or From Flood. Loss or damage to insured property, directly caused by a flood. There must be evidence of physical changes to the property.\n15. Dwelling. A building designed for use as a residence for no more than four families or a single-family unit in a condominium building.\n16. Elevated Building. A building that has no basement and that has its lowest elevated floor raised above ground level by foundation walls, shear walls, posts, piers, pilings, or columns.\n17. Emergency Program. The initial phase of a community's participation in the National Flood Insurance Program. During this phase, only limited amounts of insurance are available under the Act and the regulations prescribed pursuant to the Act.\n18. Federal Policy Fee. A flat rate charge you must pay on each new or renewal policy to defray certain administrative expenses incurred in carrying out the National Flood Insurance Program.\n19. Improvements. Fixtures, alterations, installations, or additions comprising a part of the dwelling or apartment in which you reside.\n20. Mudflow. A river of liquid and flowing mud on the surface of normally dry land areas, as when earth is carried by a current of water. Other earth movements, such as landslide, slope failure, or\n\na saturated soil mass moving by liquidity down a slope, are not mudflows.\n\n21. National Flood Insurance Program (NFIP). The program of flood insurance coverage and floodplain management administered under the Act and applicable Federal regulations in Title 44 of the Code of Federal Regulations, Subchapter B.\n22. Policy. The entire written contract between you and us. It includes:\n- a. This printed form;\n- b. The application and Declarations Page;\n- c. Any endorsement(s) that may be issued; and\n- d. Any renewal certificate indicating that coverage has been instituted for a new policy and new policy term. Only one dwelling, which you specifically described in the application, may be insured under this policy.\n23. Pollutants. Substances that include, but are not limited to, any solid, liquid, gaseous, or thermal irritant or contaminant, including smoke, vapor, soot, fumes, acids, alkalis, chemicals, and waste. 'Waste' includes, but is not limited to, materials to be recycled, reconditioned, or reclaimed.\n24. Post-FIRM Building. A building for which construction or substantial improvement occurred after December 31, 1974, or on or after the effective date of an initial Flood Insurance Rate Map (FIRM), whichever is later.\n- a. The 365 days immediately preceding the time of loss; or\n- b. The period of ownership of you or your spouse, if either you or your spouse owned the dwelling for less than 365 days immediately preceding the time of loss.\n26. Probation Surcharge. A flat charge you must pay on each new or renewal policy issued covering property in a community the NFIP has placed on probation under the provisions of 44 CFR 59.24.\n27. Regular Program. The final phase of a community's participation in the National Flood Insurance Program. In this phase, a Flood Insurance Rate Map is in effect and full limits of coverage are available under the Act and the regulations prescribed pursuant to the Act.\n28. Special Flood Hazard Area (SFHA). An area having special flood or mudflow, and/or flood-related erosion hazards, and shown on a Flood Hazard Boundary Map or Flood Insurance Rate Map as Zone A, AO, A1-A30, AE, A99, AH, AR, AR/A, AR/ AE, AR/AH, AR/AO, AR/A1-A30, V1-V30, VE, or V.\n29. Unit. A single-family residential space you own in a condominium building.\n30. Valued Policy. A policy in which the insured and the insurer agree on the value of the property insured, that value being payable in the event of a total loss. The Standard Flood Insurance Policy is not a valued policy.\n25. Principal Residence. The dwelling in which you or your spouse have lived for at least 80 percent of:\n\n## III. PROPERTY INSURED\n\nare always considered part of the dwelling and cannot be separately insured.\n\n- A detached garage at the described location. Coverage is limited to no more than 10 percent of the limit of liability on the dwelling. Use of this insurance is at your option but reduces the building limit of liability. We do not cover any detached garage used or held for use for residential (i.e., dwelling), business, or farming purposes.\n\n## A. Coverage A-Building Property\n\nWe insure against direct physical loss by or from flood to:\n\n1. The dwelling at the described location, or for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety.\n2. Additions and extensions attached to and in contact with the dwelling by means of a rigid exterior wall, a solid load-bearing interior wall, a stairway, an elevated walkway, or a roof. At your option, additions and extensions connected by any of these methods may be separately insured. Additions and extensions attached to and in contact with the building by means of a common interior wall that is not a solid load-bearing wall\n3. 3.\n\n4. Materials and supplies to be used for construction, alteration, or repair of the dwelling or a detached garage while the materials and supplies are stored in a fully enclosed building at the described location or on an adjacent property.\n5. A building under construction, alteration, or repair at the described location.\n- a. If the structure is not yet walled or roofed as described in the definition for building (see II.C.6.a) then coverage applies:\n- (1) Only while such work is in progress; or\n- (2) If such work is halted, only for a period of up to 90 continuous days thereafter.\n- b. However, coverage does not apply until the building is walled and roofed if the lowest floor, including the basement floor, of a non-elevated building or the lowest elevated floor of an elevated building is:\n- (1) Below the base flood elevation in Zones AH, AE, A1-A30, AR, AR/AE, AR/ AH, AR/A1-A30, AR/A, AR/AO; or\n- (2) Below the base flood elevation adjusted to include the effect of wave action in Zones VE or V1-V30.\n\nThe lowest floor level is based on the bottom of the lowest horizontal structural member of the floor in Zones VE or V1-V30 or the top of the floor in Zones AH, AE, A1-A30, AR, AR/AE, AR/AH, AR/ A1-A30, AR/A, and AR/AO.\n\n6. A manufactured home or a travel trailer, as described in the II.C.6. If the manufactured home or travel trailer is in a special flood hazard area, it must be anchored in the following manner at the time of the loss:\n- a. By over-the-top or frame ties to ground anchors; or\n- b. In accordance with the manufacturer's specifications; or\n- c. In compliance with the community's floodplain management requirements unless it has been continuously insured by the NFIP at the same described location since September 30, 1982.\n7. The following items of property which are insured under Coverage A only:\n- a. Awnings and canopies;\n- b. Blinds;\n- c. Built-in dishwashers;\n- d. Built-in microwave ovens;\n- e. Carpet permanently installed over unfinished flooring;\n- f. Central air conditioners;\n- g. Elevator equipment;\n- h. Fire sprinkler systems;\n- i. Walk-in freezers;\n- j. Furnaces and radiators;\n- k. Garbage disposal units;\n- l. Hot water heaters, including solar water heaters;\n- m. Light fixtures;\n- n. Outdoor antennas and aerials fastened to buildings;\n- o. Permanently installed cupboards, bookcases, cabinets, paneling, and wallpaper;\n- p. Plumbing fixtures;\n- q. Pumps and machinery for operating pumps;\n- r. Ranges, cooking stoves, and ovens;\n- s. Refrigerators; and\n- t. Wall mirrors, permanently installed.\n8. Items of property below the lowest elevated floor of an elevated postFIRM building located in Zones\n\n## A1-A30, AE, AH, AR, AR/A, AR/ AE, AR/AH, AR/A1-A30, V1-V30, or VE, or in a basement regardless of the zone. Coverage is limited to the following:\n\n- a. Any of the following items, if installed in their functioning locations and, if necessary for operation, connected to a power source:\n- (1) Central air conditioners;\n- (2) Cisterns and the water in them;\n- (3) Drywall for walls and ceilings in a basement and the cost of labor to nail it, unfinished and unfloated and not taped, to the framing;\n- (4) Electrical junction and circuit breaker boxes;\n- (5) Electrical outlets and switches;\n- (6) Elevators, dumbwaiters and related equipment, except for related equipment installed below the base flood elevation after September 30, 1987;\n- (7) Fuel tanks and the fuel in them;\n- (8) Furnaces and hot water heaters;\n- (9) Heat pumps;\n- (10) Nonflammable insulation in a basement;\n- (11) Pumps and tanks used in solar energy systems;\n- (12) Stairways and staircases attached to the building, not separated from it by elevated walkways;\n- (13) Sump pumps;\n- (14) Water softeners and the chemicals in them, water filters, and faucets installed as an integral part of the plumbing system;\n- (15) Well water tanks and pumps;\n- (16) Required utility connections for any item in this list; and\n- (17) Footings, foundations, posts, pilings, piers, or other foundation walls and anchorage systems required to support a building.\n- b. Clean-up.\n\n## B. Coverage B-Personal Property\n\n1. If you have purchased personal property coverage, we insure against direct physical loss by or from flood to personal property inside a building at the described location, if:\n- a. The property is owned by you or your household family members; and\n- b. At your option, the property is owned by guests or servants.\n2. Personal property is also insured for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety.\n3. Personal property in a building that is not fully enclosed must be secured to prevent flotation out of the building. If the personal property does float out during a flood, it will be conclusively presumed that it was not reasonably secured. In that case, there is no coverage for such property.\n4. Coverage for personal property includes the following property, subject to B.1 above, which is insured under Coverage B only:\n- a. Air conditioning units, portable or window type;\n- b. Carpets, not permanently installed, over unfinished flooring;\n- c. Carpets over finished flooring;\n- d. Clothes washers and dryers;\n- e. 'Cook-out' grills;\n- f. Food freezers, other than walk-in, and food in any freezer; and\n- g. Portable microwave ovens and portable dishwashers.\n\n## 5. Coverage for items of property below the lowest elevated floor of an elevated post-FIRM building located in Zones A1-A30, AE, AH, AR, AR/A, AR/AE, AR/AH, AR/ A1-A30, V1-V30, or VE, or in a basement regardless of the zone, is limited to the following items, if installed in their functioning locations and, if necessary for oper ation, connected to a power source:\n\n- a. Air conditioning units, portable or window type;\n- b. Clothes washers and dryers; and\n- c. Food freezers, other than walk-in, and food in any freezer.\n6. If you are a tenant and have insured personal property under Coverage B in this policy, we will cover such property, including your cooking stove or range and refrigerator. The policy will also cover improvements made or acquired solely at your expense in the dwelling or apartment in which you reside, but for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability.\n7. If you are the owner of a unit and have insured personal property under Coverage B in this policy, we will also cover your interior walls, floor, and ceiling (not otherwise insured under a flood insurance policy purchased by your condominium association) for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability.\n8. Special Limits. We will pay no more than $2,500 for any one loss to one or more of the following kinds of personal property:\n- a. Artwork, photographs, collectibles, or memorabilia, including but not limited to, porcelain or other figures, and sports cards;\n- b. Rare books or autographed items;\n- c. Jewelry, watches, precious and semi-precious stones, or articles of gold, silver, or platinum;\n- d. Furs or any article containing fur that represents its principal value; or\n- e. Personal property used in any business.\n\n## 9. We will pay only for the functional value of antiques.\n\n## C. Coverage C-Other Coverages\n\n1. Debris Removal\n- a. We will pay the expense to remove non-owned debris that is on or in insured property and debris of insured property anywhere.\n- b. If you or a member of your household perform the removal work, the value of your work will be based on the Federal minimum wage.\n- c. This coverage does not increase the Coverage A or Coverage B limit of liability.\n2. Loss Avoidance Measures\n- a. Sandbags, Supplies, and Labor\n- (1) We will pay up to $1,000 for costs you incur to protect the insured building from a flood or imminent danger of flood, for the following:\n8. (a) Your reasonable expenses to buy:\n9. (i) Sandbags, including sand to fill them;\n10. (ii) Fill for temporary levees;\n11. (iii) Pumps; and\n12. (iv) Plastic sheeting and lumber used in connection with these items.\n13. (b) The value of work, at the Federal minimum wage, that you or a member of your house-hold perform.\n- (2) This coverage for Sandbags, Supplies, and Labor only applies if damage to insured property by or from flood is imminent and the threat of flood damage is apparent enough to lead a person of common prudence to anticipate flood damage. One of the following must also occur:\n15. (a) A general and temporary condition of flooding in the area near the described\n\nlocation must occur, even if the flood does not reach the building; or\n\n- (b) A legally authorized official must issue an evacuation order or other civil order for the community in which the building is located calling for measures to preserve life and property from the peril of flood.\n\nThis coverage does not increase the Coverage A or Coverage B limit of liability.\n\n- b. Property Removed to Safety\n- (1) We will pay up to $1,000 for the reasonable expenses you incur to move insured property to a place other than the described location that contains the property in order to protect it from flood or the imminent danger of flood. Reasonable expenses include the value of work, at the Federal minimum wage, you or a member of your household perform.\n- (2) If you move insured property to a location other than the described location that contains the property in order to protect it from flood or the imminent danger of flood, we will cover such property while at that location for a period of 45 consecutive days from the date you begin to move it there. The personal property that is moved must be placed in a fully enclosed building or otherwise reasonably protected from the elements.\n- (3) Any property removed, including a moveable home described in II.6.b and c, must be placed above ground level or outside of the special flood hazard area.\n- (4) This coverage does not increase the Coverage A or Coverage B limit of liability.\n3. Condominium Loss Assessments\n- a. Subject to III.C.3.b below, if this policy insures a condominium unit, we will pay, up to the Coverage A limit of liability, your share of loss assessments charged against you by the condominium association in accordance with the condominium association's articles of association, declarations and your deed. The assessment must be made because of direct physical loss by or from flood during the policy term, to the unit or to the common elements of the NFIP insured condominium building in which this unit is located.\n- b. We will not pay any loss assessment:\n- (1) Charged against you and the condominium association by any governmental body;\n- (2) That results from a deductible under the insurance purchased by the condominium association insuring common elements;\n- (3) That results from a loss to personal property, including contents of a condomin ium building;\n\n## (4) In which the total payment combined under all policies exceeds the maximum amount of coverage available under the Act for a single unit in a condominium building where the unit is insured under both a Dwelling Policy and a RCBAP; or\n\n- (5) On any item of damage that has already been paid under a RCBAP where a single unit in a condominium building is insured by both a Dwelling Policy and a RCBAP.\n- c. Condominium Loss Assessment coverage does not increase the Coverage A Limit of Liability and is subject to the maximum coverage limits available for a single-family dwelling under the Act, payable between all\n\npolicies issued and covering the unit, under the Act.\n\n## D. Coverage D-Increased Cost of Compliance\n\n## 1. General\n\nThis policy pays you to comply with a State or local floodplain management law or ordinance affecting repair or reconstruction of a building suffering flood damage. Compliance activities eligible for payment are: elevation, floodproofing, relocation, or demolition (or any combination of these activities) of your building. Eligible floodproofing activities are limited to:\n\n- a. Non-residential buildings.\n- b. Residential buildings with basements that satisfy FEMA's standards published in the Code of Federal Regulations [44 CFR 60.6(b) or (c)].\n\n## 2. Limit of Liability\n\nWe will pay you up to $30,000 under this Coverage D-Increased Cost of Compliance, which only applies to policies with building coverage (Coverage A). Our payment of claims under Coverage D is in addition to the amount of coverage which you selected on the application and which appears on the Declarations Page. But the maximum you can collect under this policy for both Coverage A-Building Property and Coverage D-Increased Cost of Compliance cannot exceed the maximum permitted under the Act. We do not charge a separate deductible for a claim under Coverage D.\n\n## 3. Eligibility\n\n- a. A building insured under Coverage ABuilding Property sustaining a loss caused by a flood as defined by this policy must:\n- (1) Be a 'repetitive loss building.' A repetitive loss building is one that meets the following conditions:\n3. (a) The building is insured by a contract of flood insurance issued under the NFIP.\n4. (b) The building has suffered flood damage on two occasions during a 10-year period which ends on the date of the second loss.\n5. (c) The cost to repair the flood damage, on average, equaled or exceeded 25 percent of the market value of the building at the time of each flood loss.\n6. (d) In addition to the current claim, the NFIP must have paid the previous qualifying claim, and the State or community must have a cumulative, substantial damage provision or repetitive loss provision in its floodplain management law or ordinance being enforced against the building; or\n- (2) Be a building that has had flood damage in which the cost to repair equals or exceeds 50 percent of the market value of the building at the time of the flood. The State or community must have a substantial damage provision in its floodplain management law or ordinance being enforced against the building.\n- b. This Coverage D pays you to comply with State or local floodplain management laws or ordinances that meet the minimum standards of the National Flood Insurance Program found in the Code of Federal Regulations at 44 CFR 60.3. We pay for compliance activities that exceed those standards under these conditions:\n- (1) 3.a.1 above.\n- (2) Elevation or floodproofing in any risk zone to preliminary or advisory base flood elevations provided by FEMA which the State or local government has adopted and is enforcing for flooddamaged buildings in such areas. (This includes compliance activities in B, C, X, or D zones which are being changed to zones with base flood elevations. This also includes compliance activities in zones where base flood elevations are being increased, and a flood-damaged building must comply with the higher advisory base flood elevation.) Increased Cost of Compliance coverage does not apply to situations in B, C, X, or D zones where the community has derived its own elevations and is enforcing elevation or floodproofing requirements for flooddamaged buildings to elevations derived solely by the community.\n- (3) Elevation or floodproofing above the base flood elevation to meet State or local 'free-board' requirements, i.e., that a building must be elevated above the base flood elevation.\n\n- c. Under the minimum NFIP criteria at 44 CFR 60.3(b)(4), States and communities must require the elevation or floodproofing of buildings in unnumbered A zones to the base flood elevation where elevation data is obtained from a Federal, State, or other source. Such compliance activities are eligible for Coverage D.\n- d. Coverage D will pay for the incremental cost, after demolition or relocation, of elevating or floodproofing a building during its rebuilding at the same or another site to meet State or local floodplain management laws or ordinances, subject to Coverage D Exclusion 5.g below.\n- e. Coverage D will pay to bring a flood-damaged building into compliance with State or local floodplain management laws or ordinances even if the building had received a variance before the present loss from the applicable floodplain management requirements.\n\n## 4. Conditions\n\n- a. When a building insured under Coverage A-Building Property sustains a loss caused by a flood, our payment for the loss under this Coverage D will be for the increased cost to elevate, floodproof, relocate, or demolish (or any combination of these activities) caused by the enforcement of current State or local floodplain management ordinances or laws. Our payment for eligible demolition activities will be for the cost to demolish and clear the site of the building debris or a portion thereof caused by the enforcement of current State or local floodplain management\n\nordinances or laws. Eligible activities for the cost of clearing the site will include those necessary to discontinue utility service to the site and ensure proper abandonment of on-site utilities.\n\n- b. When the building is repaired or rebuilt, it must be intended for the same occupancy as the present building unless otherwise required by current floodplain management ordinances or laws.\n\n## 5. Exclusions\n\nUnder this Coverage D (Increased Cost of Compliance), we will not pay for:\n\n- a. The cost to comply with any flood plain management law or ordinance in communities participating in the Emergency Program.\n- b. The cost associated with enforcement of any ordinance or law that requires any insured or others to test for, monitor, clean up, remove, contain, treat, detoxify or neutralize, or in any way respond to, or assess the effects of pollutants.\n- c. The loss in value to any insured building due to the\n\n- requirements of any ordinance or law.\n- d. The loss in residual value of the undamaged portion of a building demolished as a consequence of enforcement of any State or local flood plain management law or ordinance.\n- e. Any Increased Cost of Compliance under this Coverage D:\n- (1) Until the building is elevated, floodproofed, demolished, or relocated on the same or to another premises; and\n- (2) Unless the building is elevated, floodproofed, demolished, or relocated as soon as reasonably possible after the loss, not to exceed two years.\n- f. Any code upgrade requirements, e.g., plumbing or electrical wiring, not specifically related to the State or local floodplain management law or ordinance.\n- g. Any compliance activities needed to bring additions or improvements made after the loss occurred into compliance with State or local flood plain management laws or ordinances.\n- h. Loss due to any ordinance or law that you were required to comply with before the current loss.\n- i. Any rebuilding activity to standards that do not meet the NFIP's minimum requirements. This includes any situation where the insured has received from the State or community a variance in connection with the current flood loss to rebuild the property to an elevation below the base flood elevation.\n- j. Increased Cost of Compliance for a garage or carport.\n- k. Any building insured under an NFIP Group Flood Insurance Policy.\n- l. Assessments made by a condo minium association on individual condominium unit owners to pay increased costs of repairing commonly owned buildings after a flood in compliance with State or local floodplain management ordinances or laws.\n6. Other Provisions\n- a. Increased Cost of Compliance coverage will not be included in the calculation to determine whether coverage meets the 80 percent insurance-to-value requirement for replacement cost coverage as set forth in Art. VII.R ('Loss Settlement') of this policy.\n- b. All other conditions and provisions of this policy apply.\n\n## We do not insure any of the following:\n\n1. Personal property not inside a building.\n2. A building, and personal property in it, located entirely in, on, or over water or seaward of mean high tide if it was constructed or substantially improved after September 30, 1982.\n3. Open structures, including a building used as a boathouse or any structure or building into which boats are floated, and personal property located in, on, or over water.\n4. Recreational vehicles other than travel trailers described in the Definitions section (see II.C.6.c) whether affixed to a permanent foundation or on wheels.\n5. Self-propelled vehicles or machines, including their parts and equipment. However, we do cover self-propelled vehicles or machines not licensed for use on public roads that are:\n- a. Used mainly to service the described location; or\n- b. Designed and used to assist handicapped persons, while the vehicles or machines\n8. are inside a building at the described location.\n6. Land, land values, lawns, trees, shrubs, plants, growing crops, or animals.\n7. Accounts, bills, coins, currency, deeds, evidences of debt, medals, money, scrip, stored value cards, postage stamps, securities, bullion, manuscripts, or other valuable papers.\n8. Underground structures and equip ment, including wells, septic tanks, and septic systems.\n9. Those portions of walks, walkways, decks, driveways, patios and other surfaces, all whether protected by a roof or not, located outside the perimeter, exterior walls of the insured building or the building in which the insured unit is located.\n10. Containers, including related equipment, such as, but not limited to, tanks containing gases or liquids.\n11. Buildings or units and all their contents if more than 49 percent of the actual cash value of the building is below ground, unless the lowest level is at or above the base flood elevation and is below\n\n- ground by reason of earth having been used as insulation material in conjunction with energy efficient building techniques.\n12. Fences, retaining walls, seawalls, bulkheads, wharves, piers, bridges, and docks.\n13. Aircraft or watercraft, or their furnishings and equipment.\n\nfilters, pumps, and pipes, wherever located.\n\n15. Property not eligible for flood insurance pursuant to the provisions of the Coastal Barrier Resources Act and the Coastal Barrier Improvement Act and amendments to these acts.\n14. Hot tubs and spas that are not bathroom fixtures, and swimming pools, and their equipment, such as, but not limited to, heaters,\n16. Personal property you own in common with other unit owners comprising the membership of a condominium association.\n\n## V. EXCLUSIONS\n\nA. We only pay for direct physical loss by or from flood, which means that we do not pay you for:\n\n1. Loss of revenue or profits;\n2. Loss of access to the insured property or described location;\n3. Loss of use of the insured property or described location;\n4. Loss from interruption of business or production;\n5. Any additional living expenses incurred while the insured building is being repaired or is unable to be occupied for any reason;\n6. The cost of complying with any ordinance or law requiring or\n\nregulating the construction, demolition, remodeling, renovation, or repair of property, including removal of any resulting debris. This exclusion does not apply to any eligible activities we describe in Coverage D-Increased Cost of Compliance; or\n\n7. Any other economic loss you suffer.\n\nB. Flood in Progress. If this policy became effective as of the time of a loan closing, as provided by 44 CFR 61.11(b), we will not pay for a loss caused by a flood that is a continuation of a flood that existed prior to coverage becoming effective.\n\nIn all other circumstances, we will not pay for a loss caused by a flood that is a continuation of a flood that existed on or before the day you submitted the application for coverage under this policy and the full amount due. We will determine the date of application using 44 CFR 61.11(f).\n\nC. We do not insure for loss to property caused directly by earth movement even if the earth movement is caused by flood. Some examples of earth movement that we do not cover are:\n\n1. Earthquake;\n2. Landslide;\n3. Land subsidence;\n4. Sinkholes;\n5. Destabilization or movement of land that results from accumulation of water in subsurface land area; or\n6. Gradual erosion.\n\nWe do, however, pay for losses from mudflow and land subsidence as a result of erosion that are specifically insured under our definition of flood (see II.B.1.c and II.B.2).\n\nD. We do not insure for direct physical loss caused directly or indirectly by any of the following:\n\n1. The pressure or weight of ice;\n2. Freezing or thawing;\n3. Rain, snow, sleet, hail, or water spray;\n4. Water, moisture, mildew, or mold damage that results primarily from any condition:\n- a. Substantially confined to the dwelling; or\n- b. That is within your control, including but not limited to:\n- (1) Design, structural, or mechanical defects;\n- (2) Failure, stoppage, or breakage of water or sewer lines, drains, pumps, fixtures, or equipment; or\n- (3) Failure to inspect and maintain the property after a flood recedes;\n5. Water or water-borne material that:\n- a. Backs up through sewers or drains;\n- b. Discharges or overflows from a sump, sump pump, or related equipment; or\n- c. Seeps or leaks on or through the insured property;\n\nunless there is a flood in the area and the flood is the proximate cause of the sewer or drain backup, sump pump discharge or overflow, or the seepage of water;\n\n6. The pressure or weight of water unless there is a flood in the area and the flood is the proximate cause of the damage from the pressure or weight of water;\n7. Power, heating, or cooling failure unless the failure results from direct physical loss by or from flood to power, heating, or cooling equipment on the described location;\n8. Theft, fire, explosion, wind, or windstorm;\n9. Anything you or any member of your household do or conspire\n\nto do to deliberately cause loss by flood; or\n\n10. Alteration of the insured property that significantly increases the risk of flooding.\n\nE. We do not insure for loss to any building or personal property located on land leased from the Federal Government, arising from or incident to the flooding of the land by the Federal Government, where the lease expressly holds the Federal Government harmless under flood insurance issued under any Federal Government program.\n\nF. We do not pay for the testing for or monitoring of pollutants unless required by law or ordinance.\n\n## VI. DEDUCTIBLES\n\nA. When a loss is insured under this policy, we will pay only that part of the loss that exceeds your deductible amount, subject to the limit of liability that applies. The deductible amount is shown on the Declarations Page.\n\nB. In each loss from flood, separate deductibles apply to the building and personal property insured by this policy.\n\n- C. The deductible does NOT apply to:\n1. III.C.2. Loss Avoidance Measures;\n2. III.C.3. Condominium Loss Assessments; or\n3. III.D. Increased Cost of Compliance.\n\nHowever, when a building under construction, alteration, or repair does not have at least two rigid exterior walls and a fully secured roof at the time of loss, your deductible amount will be two times the deductible that would otherwise apply to a completed building.\n\n## A. Pair and Set Clause\n\nIn case of loss to an article that is part of a pair or set, we will have the option of paying you:\n\n1. An amount equal to the cost of replacing the lost, damaged, or destroyed article, minus its depreciation; or\n2. The amount that represents the fair proportion of the total value of the pair or set that the lost, damaged, or destroyed article bears to the pair or set.\n\n## B. Other Insurance\n\n1. If a loss insured by this policy is also insured by other insurance that includes flood coverage not issued under the Act, we will not pay more than the amount of insurance you are entitled to for lost, damaged, or destroyed property insured under this policy subject to the following:\n- a. We will pay only the proportion of the loss that the amount of insurance that applies under this policy bears to the total amount of insurance covering the loss, unless VII.B.1.b or c immediately below applies.\n- b. If the other policy has a provision stating that it is excess insurance, this policy will be primary.\n- c. This policy will be primary (but subject to its own deductible)\n\nup to the deductible in the other flood policy (except another policy as described in VII.B.1.b above). When the other deductible amount is reached, this policy will participate in the same proportion that the amount of insurance under this policy bears to the total amount of both policies, for the remainder of the loss.\n\n2. If there is other insurance issued under the Act in the name of your condominium association covering the same property insured by this policy, then this policy will be in excess over the other insurance, except where a condominium loss assessment to the unit owner results from a loss sustained by the condominium association that was not reimbursed under a flood insurance policy written in the name of the association under the Act because the building was not, at the time of loss, insured for an amount equal to the lesser of:\n- a. 80 percent or more of its full replacement cost; or\n\n- b. The maximum amount of insurance permitted under the Act.\n3. The combined coverage payment under the other NFIP insurance and this policy cannot exceed the maximum coverage available under the Act, of $250,000 per single unit.\n\n## C. Amendments, Waivers, Assignment\n\nThis policy cannot be changed, nor can any of its provisions be waived, without the express written consent of the Federal Insurance Administrator. No action we take under the terms of this policy constitutes a waiver of any of our rights. You may assign this policy in writing when you transfer title of your property to someone else except under these conditions:\n\n- a. When this policy insures only personal property; or\n- b. When this policy insures a building under construction.\n- D. Insufficient Premium or Rating Information\n1. Applicability. The following provisions apply to all instances where the premium paid on this policy is insufficient or where the rating information is insufficient, such as where an Elevation Certificate is not provided.\n2. Reforming the Policy with Re\u00ad duced Coverage. Except as otherwise provided in VII.D.1, if the premium we received from you was not sufficient to buy the kinds and amounts of coverage you requested, we will provide only the kinds and\n\namounts of coverage that can be purchased for the premium payment we received.\n\n- a. For the purpose of determining whether your premium payment is sufficient to buy the kinds and amounts of coverage you requested, we will first deduct the costs of all applicable fees and surcharges.\n- b. If the amount paid, after deducting the costs of all applicable fees and surcharges, is not sufficient to buy any amount of coverage, your payment will be refunded. Unless the policy is reformed to increase the coverage amount to the amount originally requested pursuant to VII.D.3, this policy will be cancelled, and no claims will be paid under this policy.\n- c. Coverage limits on the reformed policy will be based upon the amount of premium submitted per type of coverage, but will not exceed the amount originally requested.\n3. Discovery of Insufficient Premium or Rating Information. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, the policy will\n\nbe reformed as described in VII.D.2. You have the option of increasing the amount of coverage resulting from this reformation to the amount you requested as follows:\n\n- a. Insufficient Premium. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, we will send you, and any mortgagee or trustee known to us, a bill for the required additional premium for the current policy term (or that portion of the current policy term following any endorsement changing the amount of coverage). If it is discovered that the initial amount charged to you for any fees or surcharges is incorrect, the difference will be added or deducted, as applicable, to the total amount in this bill.\n- (1) If you or the mortgagee or trustee pays the additional premium amount due within 30 days from the date of our bill, we will reform the policy to increase the amount of coverage to the originally requested amount, effective to the beginning\n\nof the current policy term (or subsequent date of any endorsement changing the amount of coverage).\n\n- (2) If you or the mortgagee or trustee do not pay the additional amount due within 30 days of the date of our bill, any flood insurance claim will be settled based on the reduced amount of coverage.\n- (3) As applicable, you have the option of paying all or part of the amount due out of a claim payment based on the originally requested amount of coverage.\n- b. Insufficient Rating Inform\u00ad ation. If we determine that the rating information we have is insufficient and prevents us from calculating the additional premium, we will ask you to send the required information. You must submit the information within 60 days of our request.\n- (1) If we receive the information within 60 days of our request, we will determine the amount of additional premium for the current\n\npolicy term, and follow the procedure in VII.D.3.a above.\n\n- (2) If we do not receive the information within 60 days of our request, no claims will be paid until the requested information is provided. Coverage will be limited to the amount of coverage that can be purchased for the payments we received, as determined when the requested information is provided.\n4. Coverage Increases. If we do not receive the amounts requested in VII.D.3.a or the additional information requested in VII.D.3.b by the date it is due, the amount of coverage under this policy can only be increased by endorsement subject to the appropriate waiting period. However, no coverage increases will be allowed until you have provided the information requested in VII.D.3.b.\n5. Falsifying Information. However, if we find that you or your agent intentionally did not tell us, or falsified any important fact or circumstance or did anything fraudulent relating to this insurance, the provisions of VIII.A apply.\n\n## E. Policy Renewal\n\n1. This policy will expire at 12:01 a.m. on the last day of the policy term.\n2. We must receive the payment of the appropriate renewal premium within 30 days of the expiration date.\n3. If we find, however, that we did not place your renewal notice into the U.S. Postal Service, or if we did mail it, we made a mistake, e.g., we used an incorrect, incomplete, or illegible address, which delayed its delivery to you before the due date for the renewal premium, then we will follow these procedures:\n- a. If you or your agent notified us, not later than one year after the date on which the payment of the renewal premium was due, of non-receipt of a renewal notice before the due date for the renewal premium, and we determine that the circumstances in the preceding paragraph apply, we will mail a second bill providing a revised due date, which will be 30 days after the date on which the bill is mailed.\n- b. If we do not receive the premium requested in the second bill by the revised due date, then we will not renew the policy. In that case, the policy will remain an expired policy as of the expiration date shown on the Declarations Page.\n4. In connection with the renewal of this policy, we may ask you during the policy term to recertify, on a Recertification Questionnaire we will provide to you, the rating information used to rate your most recent application for or renewal of insurance.\n- F. Conditions Suspending or Restricting Insurance\n\nWe are not liable for loss that occurs while there is a hazard that is increased by any means within your control or knowledge.\n\n- G. Requirements in Case of Loss\n\nIn case of a flood loss to insured property, you must:\n\n1. Give prompt written notice to us.\n2. As soon as reasonably possible, separate the damaged and\n\nundamaged property, putting it in the best possible order so that we may examine it.\n\n3. Prepare an inventory of damaged property showing the quantity, description, actual cash value, and amount of loss. Attach all bills, receipts, and related documents.\n4. Within 60 days after the loss, send us a proof of loss, which is your statement of the amount you are claiming under the policy signed and sworn to by you, and which furnishes us with the following information:\n- a. The date and time of loss;\n- b. A brief explanation of how the loss happened;\n- c. Your interest (for example, 'owner') and the interest, if any, of others in the damaged property;\n- d. Details of any other insurance that may cover the loss;\n- e. Changes in title or occupancy of the insured property during the term of the policy;\n- f. Specifications of damaged buildings and detailed repair estimates;\n- g. Names of mortgagees or anyone else having a lien,\n\ncharge, or claim against the insured property;\n\n- h. Details about who occupied any insured building at the time of loss and for what purpose; and\n- i. The inventory of damaged personal property described in G.3 above.\n5. In completing the proof of loss, you must use your own judgment concerning the amount of loss and justify that amount.\n6. You must cooperate with the adjuster or representative in the investigation of the claim.\n7. The insurance adjuster whom we hire to investigate your claim may furnish you with a proof of loss form, and she or he may help you complete it. However, this is a matter of courtesy only, and you must still send us a proof of loss within 60 days after the loss even if the adjuster does not furnish the form or help you complete it.\n8. We have not authorized the adjuster to approve or disapprove claims or to tell you whether we will approve your claim.\n9. At our option, we may accept the adjuster's report of the loss instead of your proof of loss. The adjuster's report will include information about your loss and the damages you sustained. You must sign the adjuster's report. At our option, we may require you to swear to the report.\n\nH. Our Options After a Loss\n\nOptions we may, in our sole discretion, exercise after loss include the following:\n\n1. At such reasonable times and places that we may designate, you must:\n- a. Show us or our representative the damaged property;\n- b. Submit to examination under oath, while not in the presence of another insured, and sign the same; and\n- c. Permit us to examine and make extracts and copies of:\n- (1) Any policies of property insurance insuring you against loss and the deed establishing your ownership of the insured real property;\n- (2) Condominium association documents including the Declarations of the condominium, its Articles of Association or Incorporation, Bylaws, rules and regulations, and other relevant documents if you are a unit owner in a condominium building; and\n- (3) All books of accounts, bills, invoices and other vouchers, or certified copies pertaining to the damaged property if the originals are lost.\n2. We may request, in writing, that you furnish us with a complete\n\ninventory of the lost, damaged or destroyed property, including:\n\n- a. Quantities and costs;\n- b. Actual cash values or replacement cost (whichever is appropriate);\n- c. Amounts of loss claimed;\n- d. Any written plans and specifications for repair of the damaged property that you can reasonably make available to us; and\n- e. Evidence that prior flood damage has been repaired.\n3. If we give you written notice within 30 days after we receive your signed, sworn proof of loss, we may:\n- a. Repair, rebuild, or replace any part of the lost, damaged, or destroyed property with material or property of like kind and quality or its functional equivalent; and\n- b. Take all or any part of the damaged property at the value that we agree upon or its appraised value.\n- I. No Benefit to Bailee\n\nNo person or organization, other than you, having custody of insured property will benefit from this insurance.\n\n## J. Loss Payment\n\n1. We will adjust all losses with you. We will pay you unless some other person or entity is named in the policy or is legally entitled to receive payment. Loss will be payable 60 days after we receive your proof of loss (or within 90 days after the insurance adjuster files the adjuster's report signed and sworn to by you in lieu of a proof of loss) and:\n- a. We reach an agreement with you;\n- b. There is an entry of a final judgment; or\n- c. There is a filing of an appraisal award with us, as provided in VII.M.\n2. If we reject your proof of loss in whole or in part you may:\n- a. Accept our denial of your claim;\n- b. Exercise your rights under this policy; or\n- c. File an amended proof of loss as long as it is filed within 60 days of the date of the loss.\n\n## K. Abandonment\n\nYou may not abandon to us damaged or undamaged property insured under this policy.\n\n## L. Salvage\n\nWe may permit you to keep damaged property insured under this policy after a loss, and we will reduce the amount of the loss proceeds payable to you under the policy by the value of the salvage.\n\n## M. Appraisal\n\nIf you and we fail to agree on the actual cash value or, if applicable, replacement cost of your damaged property to settle upon the amount of loss, then either may demand an appraisal of the loss. In this event, you and we will each choose a competent and impartial appraiser within 20 days after receiving a written request from the other. The two appraisers will choose an umpire. If they cannot agree upon an umpire within 15 days, you or we may request that the choice be made by a judge of a court of record in the state where the insured property is located. The appraisers will separately state the actual cash value, the replacement cost, and the amount of loss to each item. If the appraisers submit a written report of an agreement to us, the amount agreed upon will be the amount of loss. If they fail to agree, they will submit their differences to the umpire. A decision agreed to by any two will set the amount of actual cash value and loss, or if it applies, the replacement cost and loss.\n\n## Each party will:\n\n1. Pay its own appraiser; and\n2. Bear the other expenses of the appraisal and umpire equally.\n\n## N. Mortgage Clause\n\n## 1. The word 'mortgagee' includes trustee.\n\n2. Any loss payable under Coverage A-Building Property will be paid to any mortgagee of whom we have actual notice, as well as any other mortgagee or loss payee determined to exist at the time of loss, and you, as interests appear. If more than one mortgagee is named, the order of payment will be the same as the order of precedence of the mortgages.\n3. If we deny your claim, that denial will not apply to a valid claim of the mortgagee, if the mortgagee:\n- a. Notifies us of any change in the ownership or occupancy, or substantial change in risk of which the mortgagee is aware;\n- b. Pays any premium due under this policy on demand if you have neglected to pay the premium; and\n- c. Submits a signed, sworn proof of loss within 60 days after receiving notice from us of your failure to do so.\n\n4. All of the terms of this policy apply to the mortgagee.\n5. The mortgagee has the right to receive loss payment even if the mortgagee has started foreclosure or similar action on the building.\n6. If we decide to cancel or not renew this policy, it will continue in effect for the benefit of the mortgagee only for 30 days after we notify the mortgagee of the cancellation or non-renewal.\n7. If we pay the mortgagee for any loss and deny payment to you, we are subrogated to all the rights of the mortgagee granted under the mortgage on the property. Subrogation will not impair the right of the mortgagee to recover the full amount of the mortgagee's claim.\n- O. Suit Against Us\n\nYou may not sue us to recover money under this policy unless you have complied with all the requirements of the policy. If you do sue, you must start the suit within one year after the date of the written denial of all or part of the claim, and you must file the suit in the United States District Court of the district in which the insured property was located at the time of loss. This requirement applies to any claim that you may have under this policy and to any dispute that you may have arising out of the handling of any claim under the policy.\n\n- P. Subrogation\n\nWhenever we make a payment for a loss under this policy, we are subrogated to your right to recover for that loss from any other person. That means that your right to recover for a loss that was partly or totally caused by someone else is automatically transferred to us, to the extent that we have paid you for the loss. We may require\n\nyou to acknowledge this transfer in writing. After the loss, you may not give up our right to recover this money or do anything that would prevent us from recovering it. If you make any claim against any person who caused your loss and recover any money, you must pay us back first before you may keep any of that money.\n\n- Q. Continuous Lake Flooding\n1. If an insured building has been flooded by rising lake waters continuously for 90 days or more and it appears reasonably certain that a continuation of this flooding will result in an insured loss to the insured building equal to or greater than the building policy limits plus the deductible or the maximum payable under the policy for any one building loss, we will pay you the lesser of these two amounts without waiting for the further\n\ndamage to occur if you sign a release agreeing:\n\n- a. To make no further claim under this policy;\n- b. Not to seek renewal of this policy;\n- c. Not to apply for any flood insurance under the Act for property at the described location;\n- d. Not to seek a premium refund for current or prior terms.\n\nIf the policy term ends before the insured building has been flooded continuously for 90 days, the provisions of this paragraph Q.1 will apply when the insured building suffers a covered loss before the policy term ends.\n\n2. If your insured building is subject to continuous lake flooding from a closed basin lake, you may elect to file a claim under either paragraph Q.1 above or Q.2 (A 'closed basin lake' is a natural lake from which water leaves primarily through evaporation and whose surface area now exceeds or has exceeded one square mile at any time in the recorded past. Most of the nation's closed basin lakes are in the western half of the United\n\nStates where annual evaporation exceeds annual precipitation and where lake levels and surface areas are subject to considerable fluctuation due to wide variations in the climate. These lakes may overtop their basins on rare occasions.) Under this paragraph Q.2, we will pay your claim as if the building is a total loss even though it has not been continuously inundated for 90 days, subject to the following conditions:\n\n- a. Lake floodwaters must damage or imminently threaten to damage your building.\n- b. Before approval of your claim, you must:\n- (1) Agree to a claim payment that reflects your buying back the salvage on a negotiated basis; and\n- (2) Grant the conservation easement described in FEMA's 'Policy Guidance for Closed Basin Lakes' to be recorded in the office of the local recorder of deeds. FEMA, in consultation with the community in which the property is located, will identify on a map an area or areas\n\nof special consideration (ASC) in which there is a potential for flood damage from continuous lake flooding. FEMA will give the community the agreedupon map showing the ASC. This easement will only apply to that portion of the property in the ASC. It will allow certain agricultural and recreational uses of the land. The only structures it will allow on any portion of the property within the ASC are certain simple agricultural and recreational structures. If any of these allowable structures are insurable buildings under the NFIP and are insured under the NFIP, they will not be eligible for the benefits of this paragraph Q.2. If a U.S. Army Corps of Engineers certified flood control project or otherwise certified flood control project later protects the property, FEMA will, upon request, amend the ASC to remove areas protected by those projects. The restrictions of the easement will then no longer apply to any portion of the\n\n- property removed from the ASC; and\n- (3) Comply with paragraphs Q.1.a through Q.1.d above.\n- c. Within 90 days of approval of your claim, you must move your building to a new location outside the ASC. FEMA will give you an additional 30 days to move if you show there is sufficient reason to extend the time.\n- d. Before the final payment of your claim, you must acquire an elevation certificate and a floodplain development permit from the local floodplain administrator for the new location of your building.\n- e. Before the approval of your claim, the community having jurisdiction over your building must:\n- (1) Adopt a permanent land use ordinance, or a temporary moratorium for a period not to exceed 6 months to be followed immediately by a permanent land use ordinance that is consistent with the provisions specified in the easement required in paragraph Q.2.b above;\n\n- (2) Agree to declare and report any violations of this ordinance to FEMA so that under Section 1316 of the National Flood Insurance Act of 1968, as amended, flood insurance to the building can be denied; and\n- (3) Agree to maintain as deedrestricted, for purposes compatible with open space or agricultural or recreational use only, any affected property the community acquires an interest in. These deed restrictions must be consistent with the provisions of paragraph Q.2.b above, except that, even if a certified project protects the property, the land use restrictions continue to apply if the property was acquired under the Hazard Mitigation Grant Program or the Flood Mitigation Assistance Program. If a non-profit land trust organization receives the property as a donation, that organization must maintain the property as deed-restricted, consistent\n3. with the provisions of paragraph Q2.b above.\n- f. Before the approval of your claim, the affected State must take all action set forth in FEMA's 'Policy Guidance for Closed Basin Lakes.'\n- g. You must have NFIP flood insurance coverage con tinuously in effect from a date established by FEMA until you file a claim under paragraph Q.2. If a subsequent owner buys NFIP insurance that goes into effect within 60 days of the date of transfer of title, any gap in coverage during that 60-day period will not be a violation of this continuous coverage requirement. For the purpose of honoring a claim under this paragraph Q.2, we will not consider to be in effect any increased coverage that became effective after the date established by FEMA. The exception to this is any increased coverage in the amount suggested by your insurer as an inflation adjustment.\n- h. This paragraph Q.2 will be in effect for a community when the FEMA Regional Administrator for the affected region provides\n\n## to the community, in writing, the following:\n\n- (1) Confirmation that the community and the State are in compliance with the conditions in paragraphs Q.2.e and Q.2.f above; and\n\n## (2) The date by which you must have flood insurance in effect.\n\n## R. Loss Settlement\n\n1. Introduction\n\nThis policy provides three methods of settling losses: Replacement Cost, Special Loss Settlement, and Actual Cash Value. Each method is used for a different type of property, as explained in paragraphs a-c below.\n\n- a. Replacement Cost Loss Set tlement , described in R.2 below, applies to a singlefamily dwelling provided:\n\n## (1) It is your principal residence; and\n\n- (2) At the time of loss, the amount of insurance in this policy that applies to the dwelling is 80 percent or more of its full replacement cost immediately before the loss, or is the maximum amount of insurance available under the NFIP.\n- b. Special Loss Settlement , described in R.3 below, applies to a single-family dwelling that is a manufactured or mobile home or a travel trailer.\n- c. Actual Cash Value Loss Settlement applies to a single-family dwelling not subject to replacement cost or special loss settlement, and to the property listed in R.4 below.\n2. Replacement Cost Loss Settlement\n\nThe following loss settlement conditions apply to a single-family dwelling described in R.1.a above:\n\n- a. We will pay to repair or replace the damaged dwelling after application of the deductible and without deduction for depreciation, but not more than the least of the following amounts:\n- (1) The building limit of liability shown on your Declarations Page;\n- (2) The replacement cost of that part of the dwelling damaged, with materials of like kind and quality and for like use; or\n- (3) The necessary amount actually spent to repair or replace the damaged part of the dwelling for like use.\n- b. If the dwelling is rebuilt at a new location, the cost described above is limited to the cost that would have been incurred if the dwelling had been rebuilt at its former location.\n- c. When the full cost of repair or replacement is more than $1,000, or more than 5 percent of the whole amount of insurance that applies to the dwelling, we will not be liable for any loss under R.2.a above or R.4.a.2 below unless and until actual repair or replacement is completed.\n- d. You may disregard the replacement cost conditions above and make claim under this policy for loss to dwellings on an actual cash value basis. You may then make claim for any additional liability according to R.2.a, b, and c above, provided you notify us of your intent to do so within 180 days after the date of loss.\n- e. If the community in which your dwelling is located has been converted from the Emergency Program to the Regular Program during the current policy term, then we will consider the maximum amount of available NFIP insurance to be the amount that was available at the beginning of the current policy term.\n3. Special Loss Settlement\n- a. The following loss settlement conditions apply to a single-family dwelling that:\n- (1) is a manufactured or mobile home or a travel trailer, as defined in II.C.6.b and c;\n\n- (2) is at least 16 feet wide when fully assembled and has an area of at least 600 square feet within its perimeter walls when fully assembled; and\n- (3) is your principal residence as specified in R.1.a.1 above.\n- b. If such a dwelling is totally destroyed or damaged to such an extent that, in our judgment, it is not economically feasible to repair, at least to its pre-damage condition, we will, at our discretion pay the least of the following amounts:\n- (1) The lesser of the replacement cost of the dwelling or 1.5 times the actual cash value; or\n- (2) The building limit of liability shown on your Declarations Page.\n- c. If such a dwelling is partially damaged and, in our judgment, it is economically feasible to repair it to its pre-damage condition, we will settle the loss according to the Replacement Cost conditions in R.2 above.\n\n## 4. Actual Cash Value Loss Settlement\n\nThe types of property noted below are subject to actual cash value (or in the case of R.4.a.2., below, proportional) loss settlement.\n\n- a. A dwelling, at the time of loss, when the amount of insurance on the dwelling is both less than 80 percent of its full replacement cost immediately before the loss and less than the maximum amount of insurance available under the NFIP. In that case, we will pay the greater of the following amounts, but not more than the amount of insurance that applies to that dwelling:\n- (1) The actual cash value, as defined in II.C.2, of the damaged part of the dwelling; or\n- (2) A proportion of the cost to repair or replace the damaged part of the dwelling, without deduction for physical depreciation and after application of the deductible.\n\nThis proportion is determined as follows: If 80 percent of the full replacement cost of the dwelling is less than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the amount of insurance that represents 80 percent of its full replacement cost. But if 80 percent of the full replacement cost of the dwelling is greater than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the maximum amount of insurance available under the NFIP.\n\n- b. A two-, three-, or four-family dwelling.\n- c. A unit that is not used exclusively for singlefamily dwelling purposes.\n- d. Detached garages.\n- e. Personal property.\n- f. Appliances, carpets, and carpet pads.\n- g. Outdoor awnings, outdoor antennas or aerials of any type, and other outdoor equipment.\n- h. Any property insured under this policy that is abandoned after a loss and remains as debris anywhere on the described location.\n- i. A dwelling that is not your principal residence.\n\n## 5. Amount of Insurance Required\n\nTo determine the amount of insurance required for a dwelling immediately before the loss, we do not include the value of:\n\n- a. Footings, foundations, piers, or any other structures or devices that are below the undersurface of the lowest basement floor and support all or part of the dwelling;\n- b. Those supports listed in R.5.a above, that are below the surface of the ground inside the foundation walls if there is no basement; and\n- c. Excavations and underground flues, pipes, wiring, and drains.\n\nNote: The Coverage D-Increased Cost of Compliance limit of liability is not included in the determination of the amount of insurance required.\n\n## VIII. POLICY NULLIFICATION, CANCELLATION, AND NON-RENEWAL\n\n- A. Policy Nullification for Fraud, Misrepresentation, or Making False Statements\n1. With respect to all insureds under this policy, this policy is void and has no legal force and effect if at any time, before or after a loss, you or any other insured or your agent have, with respect to this policy or any other NFIP insurance:\n- a. Concealed or misrepresented any material fact or circumstance;\n- b. Engaged in fraudulent conduct; or\n- c. Made false statements.\n2. Policies voided under A.1 cannot be renewed or replaced by a new NFIP policy.\n3. Policies are void as of the date the acts described in A.1 above were committed.\n4. Fines, civil penalties, and imprisonment under applicable Federal laws may also apply to the acts of fraud or concealment described above.\n- B. Policy Nullification for Reasons Other Than Fraud\n1. This policy is void from its inception, and has no legal force or effect, if:\n- a. The property listed on the application is located in a community that was not participating in the NFIP on this policy's inception date and did not join or reenter the program during the policy term and before the loss occurred;\n- b. The property listed on the application is otherwise not eligible for coverage under the NFIP at the time of the initial application;\n- c. You never had an insurable interest in the property listed on the application;\n- d. You provided an agent with an application and payment, but the payment did not clear; or\n- e. We receive notice from you, prior to the policy effective date, that you have determined not to take the policy and you are not subject to a requirement to obtain and maintain flood insurance pursuant to any statute, regulation, or contract.\n2. In such cases, you will be entitled to a full refund of all premium, fees, and surcharges received. However, if a claim was paid for a policy that is void, the claim payment must be returned to FEMA or offset from the premiums to be refunded before the refund will be processed.\n\n## C. Cancellation of the Policy by You\n\n1. You may cancel this policy in accordance with the terms and conditions of this policy and the applicable rules and regulations of the NFIP.\n2. If you cancel this policy, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP.\n\n## D. Cancellation of the Policy by Us\n\n1. Cancellation for Underpayment of Amounts Owed on Policy. This policy will be cancelled, pursuant to VII.D.2, if it is determined that the premium amount you paid is not sufficient to buy any amount of coverage, and you do not pay the additional amount of premium owed to increase the coverage to the originally requested amount within the required time period.\n\n## 2. Cancellation Due to Lack of an Insurable Interest.\n\n- a. If you no longer have an insurable interest in the insured property, we will cancel this policy. You will cease to have an insurable interest if:\n- (1) For building coverage, the building was sold, destroyed, or removed.\n- (2) For contents coverage, the contents were sold or transferred ownership, or the contents were\n\ncompletely removed from the described location.\n\n- b. If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the applicable rules and regulations of the NFIP.\n\n## 3. Cancellation of Duplicate Policies\n\n- a. Except as allowed under Article I.G, your property may not be insured by more than one NFIP policy, and payment for damages to your property will only be made under one policy.\n- b. Except as allowed under Article I.G, if the property is insured by more than one NFIP policy, we will cancel all but one of the policies. The policy, or policies, will be selected for cancellation in accordance with 44 CFR 62.5 and the applicable rules and guidance of the NFIP.\n- c. If this policy is cancelled pursuant to VIII.D.4.b, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP.\n\n## 4. Cancellation Due to Physical Alteration of Property\n\n- a. If the insured building has been physically altered in such a manner that it is no longer eligible for flood insurance coverage, we will cancel this policy.\n\n## of this policy and the applicable rules and regulations of the NFIP.\n\n## E. Non-Renewal of the Policy by Us\n\nYour policy will not be renewed if:\n\n1. The community where your insured property is located is suspended or stops participating in the NFIP;\n- b. If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the terms and conditions\n2. Your building is otherwise ineligible for flood insurance under the Act;\n3. You have failed to provide the information we requested for the purpose of rating the policy within the required deadline.\n\n## IX. LIBERALIZATION CLAUSE\n\nIf we make a change that broadens your coverage under this edition of our policy, but does not require any additional premium, then that change will automatically apply to your insurance as of the date we implement the change, provided that this implementation date falls within 60 days before or during the policy term stated on the Declarations Page.\n\n## X. WHAT LAW GOVERNS\n\nThis policy and all disputes arising from the insurer's policy issuance, policy administration, or the handling of any claim under the policy are governed exclusively by the flood insurance regulations issued by FEMA, the National Flood Insurance Act of 1968, as amended (42 U.S.C. 4001, et seq.), and Federal common law.\n\nIn Witness Whereof, we have signed this policy below and hereby enter into this Insurance Agreement.\n\n\n\nDeputy Associate Administrator Federal Insurance and Mitigation Administration", + "document": { + "schema_name": "DoclingDocument", + "version": "1.10.0", + "name": "document", + "origin": { + "mimetype": "application/pdf", + "binary_hash": 8965253227783007860, + "filename": "document.pdf" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "content_layer": "furniture", + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/groups/0" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/groups/1" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/groups/2" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/groups/3" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/texts/63" + }, + { + "$ref": "#/texts/64" + }, + { + "$ref": "#/groups/4" + }, + { + "$ref": "#/texts/81" + }, + { + "$ref": "#/texts/82" + }, + { + "$ref": "#/groups/5" + }, + { + "$ref": "#/texts/84" + }, + { + "$ref": "#/texts/85" + }, + { + "$ref": "#/groups/6" + }, + { + "$ref": "#/texts/89" + }, + { + "$ref": "#/texts/90" + }, + { + "$ref": "#/groups/7" + }, + { + "$ref": "#/texts/99" + }, + { + "$ref": "#/groups/8" + }, + { + "$ref": "#/texts/126" + }, + { + "$ref": "#/texts/127" + }, + { + "$ref": "#/texts/128" + }, + { + "$ref": "#/groups/9" + }, + { + "$ref": "#/texts/148" + }, + { + "$ref": "#/groups/10" + }, + { + "$ref": "#/texts/162" + }, + { + "$ref": "#/texts/163" + }, + { + "$ref": "#/texts/164" + }, + { + "$ref": "#/groups/11" + }, + { + "$ref": "#/texts/176" + }, + { + "$ref": "#/texts/177" + }, + { + "$ref": "#/groups/12" + }, + { + "$ref": "#/texts/193" + }, + { + "$ref": "#/texts/194" + }, + { + "$ref": "#/texts/195" + }, + { + "$ref": "#/groups/13" + }, + { + "$ref": "#/texts/197" + }, + { + "$ref": "#/groups/14" + }, + { + "$ref": "#/texts/209" + }, + { + "$ref": "#/groups/15" + }, + { + "$ref": "#/texts/212" + }, + { + "$ref": "#/texts/213" + }, + { + "$ref": "#/texts/214" + }, + { + "$ref": "#/texts/215" + }, + { + "$ref": "#/texts/216" + }, + { + "$ref": "#/texts/217" + }, + { + "$ref": "#/groups/16" + }, + { + "$ref": "#/texts/220" + }, + { + "$ref": "#/texts/221" + }, + { + "$ref": "#/texts/222" + }, + { + "$ref": "#/groups/17" + }, + { + "$ref": "#/texts/234" + }, + { + "$ref": "#/texts/235" + }, + { + "$ref": "#/groups/18" + }, + { + "$ref": "#/texts/239" + }, + { + "$ref": "#/groups/19" + }, + { + "$ref": "#/texts/241" + }, + { + "$ref": "#/groups/20" + }, + { + "$ref": "#/texts/243" + }, + { + "$ref": "#/texts/244" + }, + { + "$ref": "#/groups/21" + }, + { + "$ref": "#/texts/248" + }, + { + "$ref": "#/texts/249" + }, + { + "$ref": "#/groups/22" + }, + { + "$ref": "#/texts/265" + }, + { + "$ref": "#/texts/266" + }, + { + "$ref": "#/texts/267" + }, + { + "$ref": "#/texts/268" + }, + { + "$ref": "#/groups/23" + }, + { + "$ref": "#/texts/283" + }, + { + "$ref": "#/texts/284" + }, + { + "$ref": "#/groups/24" + }, + { + "$ref": "#/texts/288" + }, + { + "$ref": "#/groups/25" + }, + { + "$ref": "#/texts/292" + }, + { + "$ref": "#/texts/293" + }, + { + "$ref": "#/groups/26" + }, + { + "$ref": "#/texts/300" + }, + { + "$ref": "#/groups/27" + }, + { + "$ref": "#/texts/302" + }, + { + "$ref": "#/texts/303" + }, + { + "$ref": "#/texts/304" + }, + { + "$ref": "#/texts/305" + }, + { + "$ref": "#/texts/306" + }, + { + "$ref": "#/groups/28" + }, + { + "$ref": "#/texts/313" + }, + { + "$ref": "#/texts/314" + }, + { + "$ref": "#/groups/29" + }, + { + "$ref": "#/texts/328" + }, + { + "$ref": "#/texts/329" + }, + { + "$ref": "#/texts/330" + }, + { + "$ref": "#/groups/30" + }, + { + "$ref": "#/texts/335" + }, + { + "$ref": "#/groups/31" + }, + { + "$ref": "#/texts/337" + }, + { + "$ref": "#/texts/338" + }, + { + "$ref": "#/texts/339" + }, + { + "$ref": "#/texts/340" + }, + { + "$ref": "#/texts/341" + }, + { + "$ref": "#/groups/32" + }, + { + "$ref": "#/texts/346" + }, + { + "$ref": "#/texts/347" + }, + { + "$ref": "#/texts/348" + }, + { + "$ref": "#/texts/349" + }, + { + "$ref": "#/texts/350" + }, + { + "$ref": "#/texts/351" + }, + { + "$ref": "#/groups/33" + }, + { + "$ref": "#/texts/354" + }, + { + "$ref": "#/groups/34" + }, + { + "$ref": "#/texts/359" + }, + { + "$ref": "#/groups/35" + }, + { + "$ref": "#/texts/362" + }, + { + "$ref": "#/texts/363" + }, + { + "$ref": "#/groups/36" + }, + { + "$ref": "#/texts/366" + }, + { + "$ref": "#/texts/367" + }, + { + "$ref": "#/groups/37" + }, + { + "$ref": "#/texts/373" + }, + { + "$ref": "#/groups/38" + }, + { + "$ref": "#/texts/378" + }, + { + "$ref": "#/texts/379" + }, + { + "$ref": "#/texts/380" + }, + { + "$ref": "#/groups/39" + }, + { + "$ref": "#/texts/383" + }, + { + "$ref": "#/groups/40" + }, + { + "$ref": "#/texts/388" + }, + { + "$ref": "#/texts/389" + }, + { + "$ref": "#/texts/390" + }, + { + "$ref": "#/groups/41" + }, + { + "$ref": "#/texts/394" + }, + { + "$ref": "#/groups/42" + }, + { + "$ref": "#/texts/402" + }, + { + "$ref": "#/groups/43" + }, + { + "$ref": "#/texts/404" + }, + { + "$ref": "#/groups/44" + }, + { + "$ref": "#/texts/407" + }, + { + "$ref": "#/texts/408" + }, + { + "$ref": "#/texts/409" + }, + { + "$ref": "#/groups/45" + }, + { + "$ref": "#/texts/419" + }, + { + "$ref": "#/groups/46" + }, + { + "$ref": "#/texts/427" + }, + { + "$ref": "#/texts/428" + }, + { + "$ref": "#/texts/429" + }, + { + "$ref": "#/texts/430" + }, + { + "$ref": "#/groups/47" + }, + { + "$ref": "#/texts/439" + }, + { + "$ref": "#/groups/48" + }, + { + "$ref": "#/texts/449" + }, + { + "$ref": "#/texts/450" + }, + { + "$ref": "#/texts/451" + }, + { + "$ref": "#/texts/452" + }, + { + "$ref": "#/groups/49" + }, + { + "$ref": "#/texts/461" + }, + { + "$ref": "#/texts/462" + }, + { + "$ref": "#/texts/463" + }, + { + "$ref": "#/texts/464" + }, + { + "$ref": "#/texts/465" + }, + { + "$ref": "#/texts/466" + }, + { + "$ref": "#/texts/467" + }, + { + "$ref": "#/groups/50" + }, + { + "$ref": "#/texts/470" + }, + { + "$ref": "#/texts/471" + }, + { + "$ref": "#/groups/51" + }, + { + "$ref": "#/texts/477" + }, + { + "$ref": "#/texts/478" + }, + { + "$ref": "#/groups/52" + }, + { + "$ref": "#/texts/484" + }, + { + "$ref": "#/groups/53" + }, + { + "$ref": "#/texts/486" + }, + { + "$ref": "#/texts/487" + }, + { + "$ref": "#/groups/54" + }, + { + "$ref": "#/texts/490" + }, + { + "$ref": "#/texts/491" + }, + { + "$ref": "#/texts/492" + }, + { + "$ref": "#/groups/55" + }, + { + "$ref": "#/texts/497" + }, + { + "$ref": "#/groups/56" + }, + { + "$ref": "#/texts/499" + }, + { + "$ref": "#/groups/57" + }, + { + "$ref": "#/texts/504" + }, + { + "$ref": "#/texts/505" + }, + { + "$ref": "#/texts/506" + }, + { + "$ref": "#/groups/58" + }, + { + "$ref": "#/texts/513" + }, + { + "$ref": "#/texts/514" + }, + { + "$ref": "#/groups/59" + }, + { + "$ref": "#/texts/521" + }, + { + "$ref": "#/texts/522" + }, + { + "$ref": "#/texts/523" + }, + { + "$ref": "#/groups/60" + }, + { + "$ref": "#/texts/525" + }, + { + "$ref": "#/texts/526" + }, + { + "$ref": "#/groups/61" + }, + { + "$ref": "#/texts/528" + }, + { + "$ref": "#/groups/62" + }, + { + "$ref": "#/texts/530" + }, + { + "$ref": "#/groups/63" + }, + { + "$ref": "#/texts/535" + }, + { + "$ref": "#/groups/64" + }, + { + "$ref": "#/texts/547" + }, + { + "$ref": "#/texts/548" + }, + { + "$ref": "#/groups/65" + }, + { + "$ref": "#/texts/555" + }, + { + "$ref": "#/texts/556" + }, + { + "$ref": "#/groups/66" + }, + { + "$ref": "#/texts/560" + }, + { + "$ref": "#/groups/67" + }, + { + "$ref": "#/texts/569" + }, + { + "$ref": "#/texts/570" + }, + { + "$ref": "#/groups/68" + }, + { + "$ref": "#/texts/574" + }, + { + "$ref": "#/texts/575" + }, + { + "$ref": "#/texts/576" + }, + { + "$ref": "#/texts/577" + }, + { + "$ref": "#/groups/69" + }, + { + "$ref": "#/texts/594" + }, + { + "$ref": "#/texts/595" + }, + { + "$ref": "#/texts/596" + }, + { + "$ref": "#/groups/70" + }, + { + "$ref": "#/texts/599" + }, + { + "$ref": "#/groups/71" + }, + { + "$ref": "#/texts/601" + }, + { + "$ref": "#/groups/72" + }, + { + "$ref": "#/texts/605" + }, + { + "$ref": "#/groups/73" + }, + { + "$ref": "#/texts/607" + }, + { + "$ref": "#/groups/74" + }, + { + "$ref": "#/texts/611" + }, + { + "$ref": "#/texts/612" + }, + { + "$ref": "#/texts/613" + }, + { + "$ref": "#/groups/75" + }, + { + "$ref": "#/texts/615" + }, + { + "$ref": "#/texts/616" + }, + { + "$ref": "#/texts/617" + }, + { + "$ref": "#/groups/76" + }, + { + "$ref": "#/texts/622" + }, + { + "$ref": "#/texts/623" + }, + { + "$ref": "#/texts/624" + }, + { + "$ref": "#/texts/625" + }, + { + "$ref": "#/texts/626" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/groups/77" + }, + { + "$ref": "#/texts/628" + }, + { + "$ref": "#/texts/629" + } + ], + "content_layer": "body", + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/11" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/21" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/1", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/2", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/53" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/texts/61" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/4", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/65" + }, + { + "$ref": "#/texts/66" + }, + { + "$ref": "#/texts/67" + }, + { + "$ref": "#/texts/68" + }, + { + "$ref": "#/texts/69" + }, + { + "$ref": "#/texts/70" + }, + { + "$ref": "#/texts/71" + }, + { + "$ref": "#/texts/72" + }, + { + "$ref": "#/texts/73" + }, + { + "$ref": "#/texts/74" + }, + { + "$ref": "#/texts/75" + }, + { + "$ref": "#/texts/76" + }, + { + "$ref": "#/texts/77" + }, + { + "$ref": "#/texts/78" + }, + { + "$ref": "#/texts/79" + }, + { + "$ref": "#/texts/80" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/5", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/83" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/6", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/86" + }, + { + "$ref": "#/texts/87" + }, + { + "$ref": "#/texts/88" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/7", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/91" + }, + { + "$ref": "#/texts/92" + }, + { + "$ref": "#/texts/93" + }, + { + "$ref": "#/texts/94" + }, + { + "$ref": "#/texts/95" + }, + { + "$ref": "#/texts/96" + }, + { + "$ref": "#/texts/97" + }, + { + "$ref": "#/texts/98" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/8", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/100" + }, + { + "$ref": "#/texts/101" + }, + { + "$ref": "#/texts/102" + }, + { + "$ref": "#/texts/103" + }, + { + "$ref": "#/texts/104" + }, + { + "$ref": "#/texts/105" + }, + { + "$ref": "#/texts/106" + }, + { + "$ref": "#/texts/107" + }, + { + "$ref": "#/texts/108" + }, + { + "$ref": "#/texts/109" + }, + { + "$ref": "#/texts/110" + }, + { + "$ref": "#/texts/111" + }, + { + "$ref": "#/texts/112" + }, + { + "$ref": "#/texts/113" + }, + { + "$ref": "#/texts/114" + }, + { + "$ref": "#/texts/115" + }, + { + "$ref": "#/texts/116" + }, + { + "$ref": "#/texts/117" + }, + { + "$ref": "#/texts/118" + }, + { + "$ref": "#/texts/119" + }, + { + "$ref": "#/texts/120" + }, + { + "$ref": "#/texts/121" + }, + { + "$ref": "#/texts/122" + }, + { + "$ref": "#/texts/123" + }, + { + "$ref": "#/texts/124" + }, + { + "$ref": "#/texts/125" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/9", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/129" + }, + { + "$ref": "#/texts/130" + }, + { + "$ref": "#/texts/131" + }, + { + "$ref": "#/texts/132" + }, + { + "$ref": "#/texts/133" + }, + { + "$ref": "#/texts/134" + }, + { + "$ref": "#/texts/135" + }, + { + "$ref": "#/texts/136" + }, + { + "$ref": "#/texts/137" + }, + { + "$ref": "#/texts/138" + }, + { + "$ref": "#/texts/139" + }, + { + "$ref": "#/texts/140" + }, + { + "$ref": "#/texts/141" + }, + { + "$ref": "#/texts/142" + }, + { + "$ref": "#/texts/143" + }, + { + "$ref": "#/texts/144" + }, + { + "$ref": "#/texts/145" + }, + { + "$ref": "#/texts/146" + }, + { + "$ref": "#/texts/147" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/10", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/149" + }, + { + "$ref": "#/texts/150" + }, + { + "$ref": "#/texts/151" + }, + { + "$ref": "#/texts/152" + }, + { + "$ref": "#/texts/153" + }, + { + "$ref": "#/texts/154" + }, + { + "$ref": "#/texts/155" + }, + { + "$ref": "#/texts/156" + }, + { + "$ref": "#/texts/157" + }, + { + "$ref": "#/texts/158" + }, + { + "$ref": "#/texts/159" + }, + { + "$ref": "#/texts/160" + }, + { + "$ref": "#/texts/161" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/11", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/165" + }, + { + "$ref": "#/texts/166" + }, + { + "$ref": "#/texts/167" + }, + { + "$ref": "#/texts/168" + }, + { + "$ref": "#/texts/169" + }, + { + "$ref": "#/texts/170" + }, + { + "$ref": "#/texts/171" + }, + { + "$ref": "#/texts/172" + }, + { + "$ref": "#/texts/173" + }, + { + "$ref": "#/texts/174" + }, + { + "$ref": "#/texts/175" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/12", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/178" + }, + { + "$ref": "#/texts/179" + }, + { + "$ref": "#/texts/180" + }, + { + "$ref": "#/texts/181" + }, + { + "$ref": "#/texts/182" + }, + { + "$ref": "#/texts/183" + }, + { + "$ref": "#/texts/184" + }, + { + "$ref": "#/texts/185" + }, + { + "$ref": "#/texts/186" + }, + { + "$ref": "#/texts/187" + }, + { + "$ref": "#/texts/188" + }, + { + "$ref": "#/texts/189" + }, + { + "$ref": "#/texts/190" + }, + { + "$ref": "#/texts/191" + }, + { + "$ref": "#/texts/192" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/13", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/196" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/14", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/198" + }, + { + "$ref": "#/texts/199" + }, + { + "$ref": "#/texts/200" + }, + { + "$ref": "#/texts/201" + }, + { + "$ref": "#/texts/202" + }, + { + "$ref": "#/texts/203" + }, + { + "$ref": "#/texts/204" + }, + { + "$ref": "#/texts/205" + }, + { + "$ref": "#/texts/206" + }, + { + "$ref": "#/texts/207" + }, + { + "$ref": "#/texts/208" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/15", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/210" + }, + { + "$ref": "#/texts/211" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/16", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/218" + }, + { + "$ref": "#/texts/219" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/17", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/223" + }, + { + "$ref": "#/texts/224" + }, + { + "$ref": "#/texts/225" + }, + { + "$ref": "#/texts/226" + }, + { + "$ref": "#/texts/227" + }, + { + "$ref": "#/texts/228" + }, + { + "$ref": "#/texts/229" + }, + { + "$ref": "#/texts/230" + }, + { + "$ref": "#/texts/231" + }, + { + "$ref": "#/texts/232" + }, + { + "$ref": "#/texts/233" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/18", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/236" + }, + { + "$ref": "#/texts/237" + }, + { + "$ref": "#/texts/238" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/19", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/240" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/20", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/242" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/21", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/245" + }, + { + "$ref": "#/texts/246" + }, + { + "$ref": "#/texts/247" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/22", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/250" + }, + { + "$ref": "#/texts/251" + }, + { + "$ref": "#/texts/252" + }, + { + "$ref": "#/texts/253" + }, + { + "$ref": "#/texts/254" + }, + { + "$ref": "#/texts/255" + }, + { + "$ref": "#/texts/256" + }, + { + "$ref": "#/texts/257" + }, + { + "$ref": "#/texts/258" + }, + { + "$ref": "#/texts/259" + }, + { + "$ref": "#/texts/260" + }, + { + "$ref": "#/texts/261" + }, + { + "$ref": "#/texts/262" + }, + { + "$ref": "#/texts/263" + }, + { + "$ref": "#/texts/264" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/23", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/269" + }, + { + "$ref": "#/texts/270" + }, + { + "$ref": "#/texts/271" + }, + { + "$ref": "#/texts/272" + }, + { + "$ref": "#/texts/273" + }, + { + "$ref": "#/texts/274" + }, + { + "$ref": "#/texts/275" + }, + { + "$ref": "#/texts/276" + }, + { + "$ref": "#/texts/277" + }, + { + "$ref": "#/texts/278" + }, + { + "$ref": "#/texts/279" + }, + { + "$ref": "#/texts/280" + }, + { + "$ref": "#/texts/281" + }, + { + "$ref": "#/texts/282" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/24", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/285" + }, + { + "$ref": "#/texts/286" + }, + { + "$ref": "#/texts/287" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/25", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/289" + }, + { + "$ref": "#/texts/290" + }, + { + "$ref": "#/texts/291" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/26", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/294" + }, + { + "$ref": "#/texts/295" + }, + { + "$ref": "#/texts/296" + }, + { + "$ref": "#/texts/297" + }, + { + "$ref": "#/texts/298" + }, + { + "$ref": "#/texts/299" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/27", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/301" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/28", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/307" + }, + { + "$ref": "#/texts/308" + }, + { + "$ref": "#/texts/309" + }, + { + "$ref": "#/texts/310" + }, + { + "$ref": "#/texts/311" + }, + { + "$ref": "#/texts/312" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/29", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/315" + }, + { + "$ref": "#/texts/316" + }, + { + "$ref": "#/texts/317" + }, + { + "$ref": "#/texts/318" + }, + { + "$ref": "#/texts/319" + }, + { + "$ref": "#/texts/320" + }, + { + "$ref": "#/texts/321" + }, + { + "$ref": "#/texts/322" + }, + { + "$ref": "#/texts/323" + }, + { + "$ref": "#/texts/324" + }, + { + "$ref": "#/texts/325" + }, + { + "$ref": "#/texts/326" + }, + { + "$ref": "#/texts/327" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/30", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/331" + }, + { + "$ref": "#/texts/332" + }, + { + "$ref": "#/texts/333" + }, + { + "$ref": "#/texts/334" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/31", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/336" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/32", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/342" + }, + { + "$ref": "#/texts/343" + }, + { + "$ref": "#/texts/344" + }, + { + "$ref": "#/texts/345" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/33", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/352" + }, + { + "$ref": "#/texts/353" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/34", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/355" + }, + { + "$ref": "#/texts/356" + }, + { + "$ref": "#/texts/357" + }, + { + "$ref": "#/texts/358" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/35", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/360" + }, + { + "$ref": "#/texts/361" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/36", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/364" + }, + { + "$ref": "#/texts/365" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/37", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/368" + }, + { + "$ref": "#/texts/369" + }, + { + "$ref": "#/texts/370" + }, + { + "$ref": "#/texts/371" + }, + { + "$ref": "#/texts/372" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/38", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/374" + }, + { + "$ref": "#/texts/375" + }, + { + "$ref": "#/texts/376" + }, + { + "$ref": "#/texts/377" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/39", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/381" + }, + { + "$ref": "#/texts/382" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/40", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/384" + }, + { + "$ref": "#/texts/385" + }, + { + "$ref": "#/texts/386" + }, + { + "$ref": "#/texts/387" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/41", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/391" + }, + { + "$ref": "#/texts/392" + }, + { + "$ref": "#/texts/393" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/42", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/395" + }, + { + "$ref": "#/texts/396" + }, + { + "$ref": "#/texts/397" + }, + { + "$ref": "#/texts/398" + }, + { + "$ref": "#/texts/399" + }, + { + "$ref": "#/texts/400" + }, + { + "$ref": "#/texts/401" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/43", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/403" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/44", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/405" + }, + { + "$ref": "#/texts/406" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/45", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/410" + }, + { + "$ref": "#/texts/411" + }, + { + "$ref": "#/texts/412" + }, + { + "$ref": "#/texts/413" + }, + { + "$ref": "#/texts/414" + }, + { + "$ref": "#/texts/415" + }, + { + "$ref": "#/texts/416" + }, + { + "$ref": "#/texts/417" + }, + { + "$ref": "#/texts/418" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/46", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/420" + }, + { + "$ref": "#/texts/421" + }, + { + "$ref": "#/texts/422" + }, + { + "$ref": "#/texts/423" + }, + { + "$ref": "#/texts/424" + }, + { + "$ref": "#/texts/425" + }, + { + "$ref": "#/texts/426" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/47", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/431" + }, + { + "$ref": "#/texts/432" + }, + { + "$ref": "#/texts/433" + }, + { + "$ref": "#/texts/434" + }, + { + "$ref": "#/texts/435" + }, + { + "$ref": "#/texts/436" + }, + { + "$ref": "#/texts/437" + }, + { + "$ref": "#/texts/438" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/48", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/440" + }, + { + "$ref": "#/texts/441" + }, + { + "$ref": "#/texts/442" + }, + { + "$ref": "#/texts/443" + }, + { + "$ref": "#/texts/444" + }, + { + "$ref": "#/texts/445" + }, + { + "$ref": "#/texts/446" + }, + { + "$ref": "#/texts/447" + }, + { + "$ref": "#/texts/448" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/49", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/453" + }, + { + "$ref": "#/texts/454" + }, + { + "$ref": "#/texts/455" + }, + { + "$ref": "#/texts/456" + }, + { + "$ref": "#/texts/457" + }, + { + "$ref": "#/texts/458" + }, + { + "$ref": "#/texts/459" + }, + { + "$ref": "#/texts/460" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/50", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/468" + }, + { + "$ref": "#/texts/469" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/51", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/472" + }, + { + "$ref": "#/texts/473" + }, + { + "$ref": "#/texts/474" + }, + { + "$ref": "#/texts/475" + }, + { + "$ref": "#/texts/476" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/52", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/479" + }, + { + "$ref": "#/texts/480" + }, + { + "$ref": "#/texts/481" + }, + { + "$ref": "#/texts/482" + }, + { + "$ref": "#/texts/483" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/53", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/485" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/54", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/488" + }, + { + "$ref": "#/texts/489" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/55", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/493" + }, + { + "$ref": "#/texts/494" + }, + { + "$ref": "#/texts/495" + }, + { + "$ref": "#/texts/496" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/56", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/498" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/57", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/500" + }, + { + "$ref": "#/texts/501" + }, + { + "$ref": "#/texts/502" + }, + { + "$ref": "#/texts/503" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/58", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/507" + }, + { + "$ref": "#/texts/508" + }, + { + "$ref": "#/texts/509" + }, + { + "$ref": "#/texts/510" + }, + { + "$ref": "#/texts/511" + }, + { + "$ref": "#/texts/512" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/59", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/515" + }, + { + "$ref": "#/texts/516" + }, + { + "$ref": "#/texts/517" + }, + { + "$ref": "#/texts/518" + }, + { + "$ref": "#/texts/519" + }, + { + "$ref": "#/texts/520" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/60", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/524" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/61", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/527" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/62", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/529" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/63", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/531" + }, + { + "$ref": "#/texts/532" + }, + { + "$ref": "#/texts/533" + }, + { + "$ref": "#/texts/534" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/64", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/536" + }, + { + "$ref": "#/texts/537" + }, + { + "$ref": "#/texts/538" + }, + { + "$ref": "#/texts/539" + }, + { + "$ref": "#/texts/540" + }, + { + "$ref": "#/texts/541" + }, + { + "$ref": "#/texts/542" + }, + { + "$ref": "#/texts/543" + }, + { + "$ref": "#/texts/544" + }, + { + "$ref": "#/texts/545" + }, + { + "$ref": "#/texts/546" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/65", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/549" + }, + { + "$ref": "#/texts/550" + }, + { + "$ref": "#/texts/551" + }, + { + "$ref": "#/texts/552" + }, + { + "$ref": "#/texts/553" + }, + { + "$ref": "#/texts/554" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/66", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/557" + }, + { + "$ref": "#/texts/558" + }, + { + "$ref": "#/texts/559" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/67", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/561" + }, + { + "$ref": "#/texts/562" + }, + { + "$ref": "#/texts/563" + }, + { + "$ref": "#/texts/564" + }, + { + "$ref": "#/texts/565" + }, + { + "$ref": "#/texts/566" + }, + { + "$ref": "#/texts/567" + }, + { + "$ref": "#/texts/568" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/68", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/571" + }, + { + "$ref": "#/texts/572" + }, + { + "$ref": "#/texts/573" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/69", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/578" + }, + { + "$ref": "#/texts/579" + }, + { + "$ref": "#/texts/580" + }, + { + "$ref": "#/texts/581" + }, + { + "$ref": "#/texts/582" + }, + { + "$ref": "#/texts/583" + }, + { + "$ref": "#/texts/584" + }, + { + "$ref": "#/texts/585" + }, + { + "$ref": "#/texts/586" + }, + { + "$ref": "#/texts/587" + }, + { + "$ref": "#/texts/588" + }, + { + "$ref": "#/texts/589" + }, + { + "$ref": "#/texts/590" + }, + { + "$ref": "#/texts/591" + }, + { + "$ref": "#/texts/592" + }, + { + "$ref": "#/texts/593" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/70", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/597" + }, + { + "$ref": "#/texts/598" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/71", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/600" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/72", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/602" + }, + { + "$ref": "#/texts/603" + }, + { + "$ref": "#/texts/604" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/73", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/606" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/74", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/608" + }, + { + "$ref": "#/texts/609" + }, + { + "$ref": "#/texts/610" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/75", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/614" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/76", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/618" + }, + { + "$ref": "#/texts/619" + }, + { + "$ref": "#/texts/620" + }, + { + "$ref": "#/texts/621" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + }, + { + "self_ref": "#/groups/77", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/627" + } + ], + "content_layer": "body", + "name": "group", + "label": "key_value_area" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 45.0, + "t": 745.5843, + "r": 295.3584, + "b": 726.902362052506, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 32 + ] + } + ], + "orig": "National Flood Insurance Program", + "text": "National Flood Insurance Program" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 45.0, + "t": 710.3683, + "r": 393.0305400000002, + "b": 657.6594784511784, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "Dwelling Form", + "text": "Dwelling Form", + "level": 1 + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 45.0, + "t": 637.6723000000001, + "r": 376.55759999999964, + "b": 616.7050177242888, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 31 + ] + } + ], + "orig": "Standard Flood Insurance Policy", + "text": "Standard Flood Insurance Policy" + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 45.0, + "t": 603.6843, + "r": 199.29919999999998, + "b": 589.7061118161926, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 20 + ] + } + ], + "orig": "F-122 / October 2021", + "text": "F-122 / October 2021" + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 76.8484, + "t": 747.0001, + "r": 534.9600099999996, + "b": 738.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 84 + ] + } + ], + "orig": "FEDERAL EMERGENCY MANAGEMENT AGENCY, FEDERAL INSURANCE AND MITIGATION ADMINISTRATION", + "text": "FEDERAL EMERGENCY MANAGEMENT AGENCY, FEDERAL INSURANCE AND MITIGATION ADMINISTRATION" + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 216.4612, + "t": 729.5581, + "r": 395.3619219999998, + "b": 718.2008221006564, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 31 + ] + } + ], + "orig": "Standard Flood Insurance Policy", + "text": "Standard Flood Insurance Policy" + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 234.3755, + "t": 703.8041000000001, + "r": 377.42749999999984, + "b": 682.7205713804714, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "Dwelling Form", + "text": "Dwelling Form", + "level": 1 + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 62.7952, + "t": 668.7001, + "r": 549.0010299999989, + "b": 659.9152964085298, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 119 + ] + } + ], + "orig": "Please read the policy carefully. The flood insurance provided is subject to limitations, restrictions, and exclusions.", + "text": "Please read the policy carefully. The flood insurance provided is subject to limitations, restrictions, and exclusions." + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 268.9194, + "t": 640.3861, + "r": 342.90540000000004, + "b": 630.8202927194861, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "I. AGREEMENT", + "text": "I. AGREEMENT", + "level": 1 + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 44.82, + "t": 609.6001, + "r": 292.5885000000002, + "b": 600.8152964085298, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 60 + ] + } + ], + "orig": "A. This policy insures the following types of property only:", + "text": "This policy insures the following types of property only:", + "enumerated": true, + "marker": "A." + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 58.32, + "t": 592.1001, + "r": 298.99377000000015, + "b": 570.3637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 88 + ] + } + ], + "orig": "1. A one to four family residential building, not under a condominium form of ownership;", + "text": "A one to four family residential building, not under a condominium form of ownership;", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 314.91, + "t": 609.6001, + "r": 569.9926199999999, + "b": 574.8637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 178 + ] + } + ], + "orig": "E. This policy insures only one building. If you own more than one building, coverage will apply to the single building specifically described in the Flood Insurance Application.", + "text": "This policy insures only one building. If you own more than one building, coverage will apply to the single building specifically described in the Flood Insurance Application.", + "enumerated": true, + "marker": "E." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 58.32, + "t": 561.6001, + "r": 281.08665, + "b": 539.8044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 63 + ] + } + ], + "orig": "2. A single-family dwelling unit in a condominium building; and", + "text": "A single-family dwelling unit in a condominium building; and", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 58.32, + "t": 531.1001, + "r": 213.3498599999999, + "b": 522.3637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "3. Personal property in a building.", + "text": "Personal property in a building.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 44.82, + "t": 510.00010000000003, + "r": 299.90757000000013, + "b": 462.26373238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 216 + ] + } + ], + "orig": "B. The Federal Emergency Management Agency (FEMA) provides flood insurance under the terms of the National Flood Insurance Act of 1968 and its amendments, and Title 44 of the Code of Federal Regulations.", + "text": "The Federal Emergency Management Agency (FEMA) provides flood insurance under the terms of the National Flood Insurance Act of 1968 and its amendments, and Title 44 of the Code of Federal Regulations.", + "enumerated": true, + "marker": "B." + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 44.82, + "t": 449.9001, + "r": 299.8749000000002, + "b": 428.16373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 93 + ] + } + ], + "orig": "C. We will pay you for direct physical loss by or from flood to your insured property if you:", + "text": "We will pay you for direct physical loss by or from flood to your insured property if you:", + "enumerated": true, + "marker": "C." + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 58.32, + "t": 419.4001, + "r": 299.87345000000005, + "b": 397.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 87 + ] + } + ], + "orig": "1. Have paid the full amount due (including applicable premiums, surcharges, and fees);", + "text": "Have paid the full amount due (including applicable premiums, surcharges, and fees);", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 58.32, + "t": 388.9001, + "r": 275.23730000000006, + "b": 367.1044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 59 + ] + } + ], + "orig": "2. Comply with all terms and conditions of this policy; and", + "text": "Comply with all terms and conditions of this policy; and", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 58.32, + "t": 358.4001, + "r": 242.3792, + "b": 336.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "3. Have furnished accurate information and statements.", + "text": "Have furnished accurate information and statements.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 44.82, + "t": 324.3001, + "r": 299.8709400000002, + "b": 302.5637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 114 + ] + } + ], + "orig": "D. We have the right to review the information you give us at any time and revise your policy based on our review.", + "text": "We have the right to review the information you give us at any time and revise your policy based on our review.", + "enumerated": true, + "marker": "D." + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 314.91, + "t": 562.5001, + "r": 570.0054899999998, + "b": 475.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 377 + ] + } + ], + "orig": "F. Subject to the exception in I.G below, multiple policies with building coverage cannot be issued to insure a single building to one insured or to different insureds, even if separate policies were issued through different NFIP insurers. Payment for damages may only be made under a single policy for building damages under Coverage ABuilding Property.", + "text": "Subject to the exception in I.G below, multiple policies with building coverage cannot be issued to insure a single building to one insured or to different insureds, even if separate policies were issued through different NFIP insurers. Payment for damages may only be made under a single policy for building damages under Coverage ABuilding Property.", + "enumerated": true, + "marker": "F." + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 314.91, + "t": 463.4001, + "r": 569.9787600000002, + "b": 428.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 180 + ] + } + ], + "orig": "G. A Dwelling Form policy with building coverage may be issued to a unit owner in a condominium building that is also insured under a Residential Condominium", + "text": "A Dwelling Form policy with building coverage may be issued to a unit owner in a condominium building that is also insured under a Residential Condominium", + "enumerated": true, + "marker": "G." + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 314.90830000000005, + "t": 422.8881, + "r": 571.5289000000002, + "b": 267.11646080178184, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 313 + ] + } + ], + "orig": "Building Association Policy (RCBAP). However, no more than $250,000 may be paid in combined benefits for a single unit under the Dwelling Form policy and the RCBAP. We will only pay for damage once. Items of damage paid for under an RCBAP cannot also be claimed under the Dwelling Form policy.", + "text": "Building Association Policy (RCBAP). However, no more than $250,000 may be paid in combined benefits for a single unit under the Dwelling Form policy and the RCBAP. We will only pay for damage once. Items of damage paid for under an RCBAP cannot also be claimed under the Dwelling Form policy." + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 267.1321, + "t": 244.5861, + "r": 344.69420000000014, + "b": 235.02029271948606, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 15 + ] + } + ], + "orig": "II. DEFINITIONS", + "text": "II. DEFINITIONS", + "level": 1 + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 44.82, + "t": 212.90010000000007, + "r": 299.89173000000017, + "b": 113.16373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 475 + ] + } + ], + "orig": "A. In this policy, 'you' and 'your' refer to the named insured(s) shown on the Declarations Page of this policy and the spouse of the named insured, if a resident of the same household. Insured(s) also includes: Any mortgagee and loss payee named in the Application and Declarations Page, as well as any other mortgagee or loss payee determined to exist at the time of loss, in the order of precedence. 'We,' 'us,' and 'our' refer to the insurer.", + "text": "A. In this policy, 'you' and 'your' refer to the named insured(s) shown on the Declarations Page of this policy and the spouse of the named insured, if a resident of the same household. Insured(s) also includes: Any mortgagee and loss payee named in the Application and Declarations Page, as well as any other mortgagee or loss payee determined to exist at the time of loss, in the order of precedence. 'We,' 'us,' and 'our' refer to the insurer." + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 44.821200000000005, + "t": 104.40009999999995, + "r": 299.90361, + "b": 69.66373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 134 + ] + } + ], + "orig": "Some definitions are complex because they are provided as they appear in the law or regulations, or result from court cases.", + "text": "Some definitions are complex because they are provided as they appear in the law or regulations, or result from court cases." + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/groups/1" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 314.91, + "t": 212.90010000000007, + "r": 553.6595999999998, + "b": 204.11529640852973, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 57 + ] + } + ], + "orig": "B. Flood , as used in this flood insurance policy, means:", + "text": "Flood , as used in this flood insurance policy, means:", + "enumerated": true, + "marker": "B." + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/groups/1" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 328.41, + "t": 195.40010000000007, + "r": 569.9975400000006, + "b": 147.66373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 195 + ] + } + ], + "orig": "1. A general and temporary condition of partial or complete inundation of two or more acres of normally dry land area or of two or more properties (one of which is your property) from:", + "text": "A general and temporary condition of partial or complete inundation of two or more acres of normally dry land area or of two or more properties (one of which is your property) from:", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/groups/1" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 346.41, + "t": 138.90010000000007, + "r": 508.6114199999994, + "b": 130.16373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 38 + ] + } + ], + "orig": "a. Overflow of inland or tidal waters;", + "text": "Overflow of inland or tidal waters;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/groups/1" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 346.41, + "t": 122.30010000000004, + "r": 557.1451799999999, + "b": 100.56373238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 78 + ] + } + ], + "orig": "b. Unusual and rapid accumulation or runoff of surface waters from any source;", + "text": "Unusual and rapid accumulation or runoff of surface waters from any source;", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/groups/1" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 346.41, + "t": 92.70010000000002, + "r": 403.19226, + "b": 83.96373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 11 + ] + } + ], + "orig": "c. Mudflow.", + "text": "Mudflow.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/groups/1" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 328.41, + "t": 75.20010000000002, + "r": 569.9678400000009, + "b": 53.46373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 107 + ] + } + ], + "orig": "2. Collapse or subsidence of land along the shore of a lake or similar body of water as a result of erosion", + "text": "Collapse or subsidence of land along the shore of a lake or similar body of water as a result of erosion", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 3, + "bbox": { + "l": 511.695, + "t": 36.13409999999999, + "r": 567.081, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "PAGE 1 OF 30", + "text": "PAGE 1 OF 30" + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 76.5, + "t": 747.0001, + "r": 299.9717100000002, + "b": 712.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 151 + ] + } + ], + "orig": "or undermining caused by waves or currents of water exceeding anticipated cyclical levels that result in a flood as defined in B.1.a above.", + "text": "or undermining caused by waves or currents of water exceeding anticipated cyclical levels that result in a flood as defined in B.1.a above." + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 45.0, + "t": 699.9001000000001, + "r": 299.9994600000001, + "b": 678.1637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 77 + ] + } + ], + "orig": "C. The following are the other key definitions we use in this policy:", + "text": "C. The following are the other key definitions we use in this policy:" + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 58.5, + "t": 669.4001000000001, + "r": 299.9637900000001, + "b": 647.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 74 + ] + } + ], + "orig": "1. Act. The National Flood Insurance Act of 1968 and any amendments to it.", + "text": "Act. The National Flood Insurance Act of 1968 and any amendments to it.", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 58.5, + "t": 638.9001000000001, + "r": 299.9499300000001, + "b": 604.1637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 135 + ] + } + ], + "orig": "2. Actual Cash Value. The cost to replace an insured item of property at the time of loss, less the value of its physical depreciation.", + "text": "Actual Cash Value. The cost to replace an insured item of property at the time of loss, less the value of its physical depreciation.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 58.5, + "t": 595.4001000000001, + "r": 299.9717100000001, + "b": 521.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 311 + ] + } + ], + "orig": "3. Application. The statement made and signed by you or your agent in applying for this policy. The application gives information we use to determine the eligibility of the risk, the kind of policy to be issued, and the correct premium payment. The application is part of this flood insurance policy.", + "text": "Application. The statement made and signed by you or your agent in applying for this policy. The application gives information we use to determine the eligibility of the risk, the kind of policy to be issued, and the correct premium payment. The application is part of this flood insurance policy.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 58.5, + "t": 512.9001, + "r": 299.9449800000002, + "b": 491.16373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 98 + ] + } + ], + "orig": "4. Base Flood. A flood having a one percent chance of being equaled or exceeded in any given year.", + "text": "Base Flood. A flood having a one percent chance of being equaled or exceeded in any given year.", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 58.5, + "t": 482.4001, + "r": 299.9657700000002, + "b": 447.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 147 + ] + } + ], + "orig": "5. Basement. Any area of a building, including any sunken room or sunken portion of a room, having its floor below ground level on all sides.", + "text": "Basement. Any area of a building, including any sunken room or sunken portion of a room, having its floor below ground level on all sides.", + "enumerated": true, + "marker": "5." + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 58.5, + "t": 438.9001, + "r": 111.38957999999995, + "b": 430.11529640852973, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 11 + ] + } + ], + "orig": "6. Building", + "text": "Building", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 76.5, + "t": 421.4001, + "r": 299.9547, + "b": 386.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 122 + ] + } + ], + "orig": "a. A structure with two or more outside rigid walls and a fully secured roof that is affixed to a permanent site;", + "text": "A structure with two or more outside rigid walls and a fully secured roof that is affixed to a permanent site;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 76.5, + "t": 378.8001, + "r": 299.98835999999994, + "b": 318.00443408577877, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 209 + ] + } + ], + "orig": "b. A manufactured home, also known as a mobile home, is a structure: built on a permanent chassis, transported to its site in one or more sections, and affixed to a permanent foundation; or", + "text": "A manufactured home, also known as a mobile home, is a structure: built on a permanent chassis, transported to its site in one or more sections, and affixed to a permanent foundation; or", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/groups/2" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 76.5, + "t": 310.2001, + "r": 299.98143000000016, + "b": 262.46373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 192 + ] + } + ], + "orig": "c. A travel trailer without wheels, built on a chassis and affixed to a permanent foundation, that is regulated under the community's floodplain management and building ordinances or laws.", + "text": "A travel trailer without wheels, built on a chassis and affixed to a permanent foundation, that is regulated under the community's floodplain management and building ordinances or laws.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 76.5018, + "t": 254.6001, + "r": 299.99925, + "b": 206.86373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 190 + ] + } + ], + "orig": "Building does not mean a gas or liquid storage tank, shipping container, or a recreational vehicle, park trailer, or other similar vehicle, except as described in C.6.c above.", + "text": "Building does not mean a gas or liquid storage tank, shipping container, or a recreational vehicle, park trailer, or other similar vehicle, except as described in C.6.c above." + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 58.5, + "t": 198.1001, + "r": 299.96379, + "b": 176.36373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 105 + ] + } + ], + "orig": "7. Cancellation. The ending of the insurance coverage provided by this policy before the expiration date.", + "text": "Cancellation. The ending of the insurance coverage provided by this policy before the expiration date.", + "enumerated": true, + "marker": "7." + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 58.5, + "t": 167.6001, + "r": 299.9657700000001, + "b": 132.86373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 146 + ] + } + ], + "orig": "8. Condominium. That form of ownership of one or more buildings in which each unit owner has an undivided interest in common elements.", + "text": "Condominium. That form of ownership of one or more buildings in which each unit owner has an undivided interest in common elements.", + "enumerated": true, + "marker": "8." + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 58.5, + "t": 124.1001, + "r": 299.9826000000001, + "b": 89.36373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 115 + ] + } + ], + "orig": "9. Condominium Association. The entity made up of the unit owners responsible for the maintenance and operation of:", + "text": "Condominium Association. The entity made up of the unit owners responsible for the maintenance and operation of:", + "enumerated": true, + "marker": "9." + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 76.5, + "t": 80.6001, + "r": 299.9735100000001, + "b": 58.80443408577878, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 64 + ] + } + ], + "orig": "a. Common elements owned in undivided shares by unit owners; and", + "text": "Common elements owned in undivided shares by unit owners; and", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 346.5, + "t": 747.0001, + "r": 569.9903399999998, + "b": 712.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 129 + ] + } + ], + "orig": "b. Other buildings in which the unit owners have use rights; where membership in the entity is a required condition of ownership.", + "text": "Other buildings in which the unit owners have use rights; where membership in the entity is a required condition of ownership.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 704.4001000000001, + "r": 569.9944800000001, + "b": 656.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 179 + ] + } + ], + "orig": "10. Condominium Building. A type of building for which the form of ownership is one in which each unit owner has an undivided interest in common elements of the building.", + "text": " Condominium Building. A type of building for which the form of ownership is one in which each unit owner has an undivided interest in common elements of the building.", + "enumerated": true, + "marker": "10." + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 647.9001000000001, + "r": 569.9915100000001, + "b": 561.1637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 312 + ] + } + ], + "orig": "11. Declarations Page. A computer-generated summary of information you provided in your application for insurance. The Declarations Page also describes the term of the policy, limits of coverage, and displays the premium and our name. The Declarations Page is a part of this flood insurance policy.", + "text": " Declarations Page. A computer-generated summary of information you provided in your application for insurance. The Declarations Page also describes the term of the policy, limits of coverage, and displays the premium and our name. The Declarations Page is a part of this flood insurance policy.", + "enumerated": true, + "marker": "11." + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 552.4001000000001, + "r": 569.9637900000009, + "b": 504.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 170 + ] + } + ], + "orig": "12. Deductible. The amount of an insured loss that is your responsibility and that is incurred by you before any amounts are paid for the insured loss under this policy.", + "text": " Deductible. The amount of an insured loss that is your responsibility and that is incurred by you before any amounts are paid for the insured loss under this policy.", + "enumerated": true, + "marker": "12." + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 495.9001, + "r": 569.9885399999994, + "b": 448.16373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 164 + ] + } + ], + "orig": "13. Described Location. The location where the insured building(s) or personal property are found. The described location is shown on the Declarations Page.", + "text": " Described Location. The location where the insured building(s) or personal property are found. The described location is shown on the Declarations Page.", + "enumerated": true, + "marker": "13." + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 439.4001, + "r": 569.968740000001, + "b": 391.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 174 + ] + } + ], + "orig": "14. D irect Physical Loss By or From Flood. Loss or damage to insured property, directly caused by a flood. There must be evidence of physical changes to the property.", + "text": "D irect Physical Loss By or From Flood. Loss or damage to insured property, directly caused by a flood. There must be evidence of physical changes to the property.", + "enumerated": true, + "marker": "14." + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 382.9001, + "r": 569.9826000000004, + "b": 348.16373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 147 + ] + } + ], + "orig": "15. Dwelling. A building designed for use as a residence for no more than four families or a single-family unit in a condominium building.", + "text": " Dwelling. A building designed for use as a residence for no more than four families or a single-family unit in a condominium building.", + "enumerated": true, + "marker": "15." + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 339.4001, + "r": 569.9835900000007, + "b": 291.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 195 + ] + } + ], + "orig": "16. Elevated Building. A building that has no basement and that has its lowest elevated floor raised above ground level by foundation walls, shear walls, posts, piers, pilings, or columns.", + "text": " Elevated Building. A building that has no basement and that has its lowest elevated floor raised above ground level by foundation walls, shear walls, posts, piers, pilings, or columns.", + "enumerated": true, + "marker": "16." + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 282.9001, + "r": 569.9855700000005, + "b": 209.16373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 257 + ] + } + ], + "orig": "17. Emergency Program. The initial phase of a community's participation in the National Flood Insurance Program. During this phase, only limited amounts of insurance are available under the Act and the regulations prescribed pursuant to the Act.", + "text": " Emergency Program. The initial phase of a community's participation in the National Flood Insurance Program. During this phase, only limited amounts of insurance are available under the Act and the regulations prescribed pursuant to the Act.", + "enumerated": true, + "marker": "17." + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 200.40010000000007, + "r": 569.9806200000008, + "b": 152.66373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 204 + ] + } + ], + "orig": "18. Federal Policy Fee. A flat rate charge you must pay on each new or renewal policy to defray certain administrative expenses incurred in carrying out the National Flood Insurance Program.", + "text": " Federal Policy Fee. A flat rate charge you must pay on each new or renewal policy to defray certain administrative expenses incurred in carrying out the National Flood Insurance Program.", + "enumerated": true, + "marker": "18." + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 143.90010000000007, + "r": 569.9944800000004, + "b": 109.16373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 147 + ] + } + ], + "orig": "19. Improvements. Fixtures, alterations, installations, or additions comprising a part of the dwelling or apartment in which you reside.", + "text": " Improvements. Fixtures, alterations, installations, or additions comprising a part of the dwelling or apartment in which you reside.", + "enumerated": true, + "marker": "19." + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/groups/3" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 328.5, + "t": 100.40009999999995, + "r": 569.9697300000006, + "b": 52.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 211 + ] + } + ], + "orig": "20. Mudflow. A river of liquid and flowing mud on the surface of normally dry land areas, as when earth is carried by a current of water. Other earth movements, such as landslide, slope failure, or", + "text": " Mudflow. A river of liquid and flowing mud on the surface of normally dry land areas, as when earth is carried by a current of water. Other earth movements, such as landslide, slope failure, or", + "enumerated": true, + "marker": "20." + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 4, + "bbox": { + "l": 511.605, + "t": 36.13409999999999, + "r": 566.9919000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "PAGE 2 OF 30", + "text": "PAGE 2 OF 30" + }, + { + "self_ref": "#/texts/64", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 76.32, + "t": 747.0001, + "r": 299.91150000000016, + "b": 725.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 73 + ] + } + ], + "orig": "a saturated soil mass moving by liquidity down a slope, are not mudflows.", + "text": "a saturated soil mass moving by liquidity down a slope, are not mudflows." + }, + { + "self_ref": "#/texts/65", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 58.32, + "t": 716.5001, + "r": 299.88180000000006, + "b": 655.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 243 + ] + } + ], + "orig": "21. National Flood Insurance Program (NFIP). The program of flood insurance coverage and floodplain management administered under the Act and applicable Federal regulations in Title 44 of the Code of Federal Regulations, Subchapter B.", + "text": " National Flood Insurance Program (NFIP). The program of flood insurance coverage and floodplain management administered under the Act and applicable Federal regulations in Title 44 of the Code of Federal Regulations, Subchapter B.", + "enumerated": true, + "marker": "21." + }, + { + "self_ref": "#/texts/66", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 58.32, + "t": 647.0001, + "r": 299.86398000000025, + "b": 625.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 78 + ] + } + ], + "orig": "22. Policy. The entire written contract between you and us. It includes:", + "text": " Policy. The entire written contract between you and us. It includes:", + "enumerated": true, + "marker": "22." + }, + { + "self_ref": "#/texts/67", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 76.32, + "t": 616.5001, + "r": 170.27972999999997, + "b": 607.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "a. This printed form;", + "text": "This printed form;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/68", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 76.32, + "t": 600.6201, + "r": 262.6883100000003, + "b": 591.8837323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 41 + ] + } + ], + "orig": "b. The application and Declarations Page;", + "text": "The application and Declarations Page;", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/69", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 76.32, + "t": 584.7401, + "r": 286.5186000000001, + "b": 575.9444340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 45 + ] + } + ], + "orig": "c. Any endorsement(s) that may be issued; and", + "text": "Any endorsement(s) that may be issued; and", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/70", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 76.32, + "t": 568.8601, + "r": 299.9034000000001, + "b": 508.1237323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 222 + ] + } + ], + "orig": "d. Any renewal certificate indicating that coverage has been instituted for a new policy and new policy term. Only one dwelling, which you specifically described in the application, may be insured under this policy.", + "text": "Any renewal certificate indicating that coverage has been instituted for a new policy and new policy term. Only one dwelling, which you specifically described in the application, may be insured under this policy.", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/71", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 58.32, + "t": 499.3601, + "r": 299.90061000000026, + "b": 425.6237323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 317 + ] + } + ], + "orig": "23. Pollutants. Substances that include, but are not limited to, any solid, liquid, gaseous, or thermal irritant or contaminant, including smoke, vapor, soot, fumes, acids, alkalis, chemicals, and waste. 'Waste' includes, but is not limited to, materials to be recycled, reconditioned, or reclaimed.", + "text": " Pollutants. Substances that include, but are not limited to, any solid, liquid, gaseous, or thermal irritant or contaminant, including smoke, vapor, soot, fumes, acids, alkalis, chemicals, and waste. 'Waste' includes, but is not limited to, materials to be recycled, reconditioned, or reclaimed.", + "enumerated": true, + "marker": "23." + }, + { + "self_ref": "#/texts/72", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 58.32, + "t": 416.8601, + "r": 299.88279000000006, + "b": 356.1237323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 235 + ] + } + ], + "orig": "24. Post-FIRM Building. A building for which construction or substantial improvement occurred after December 31, 1974, or on or after the effective date of an initial Flood Insurance Rate Map (FIRM), whichever is later.", + "text": " Post-FIRM Building. A building for which construction or substantial improvement occurred after December 31, 1974, or on or after the effective date of an initial Flood Insurance Rate Map (FIRM), whichever is later.", + "enumerated": true, + "marker": "24." + }, + { + "self_ref": "#/texts/73", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 346.41, + "t": 747.0001, + "r": 569.97459, + "b": 725.2044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 58 + ] + } + ], + "orig": "a. The 365 days immediately preceding the time of loss; or", + "text": "The 365 days immediately preceding the time of loss; or", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/74", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 346.41, + "t": 718.1201, + "r": 569.9973600000001, + "b": 670.3837323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 160 + ] + } + ], + "orig": "b. The period of ownership of you or your spouse, if either you or your spouse owned the dwelling for less than 365 days immediately preceding the time of loss.", + "text": "The period of ownership of you or your spouse, if either you or your spouse owned the dwelling for less than 365 days immediately preceding the time of loss.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/75", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 328.41, + "t": 662.5201000000001, + "r": 569.9757600000007, + "b": 614.7837323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 206 + ] + } + ], + "orig": "26. Probation Surcharge. A flat charge you must pay on each new or renewal policy issued covering property in a community the NFIP has placed on probation under the provisions of 44 CFR 59.24.", + "text": " Probation Surcharge. A flat charge you must pay on each new or renewal policy issued covering property in a community the NFIP has placed on probation under the provisions of 44 CFR 59.24.", + "enumerated": true, + "marker": "26." + }, + { + "self_ref": "#/texts/76", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 328.41, + "t": 606.0201000000001, + "r": 569.9985300000004, + "b": 532.2837323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 288 + ] + } + ], + "orig": "27. Regular Program. The final phase of a community's participation in the National Flood Insurance Program. In this phase, a Flood Insurance Rate Map is in effect and full limits of coverage are available under the Act and the regulations prescribed pursuant to the Act.", + "text": " Regular Program. The final phase of a community's participation in the National Flood Insurance Program. In this phase, a Flood Insurance Rate Map is in effect and full limits of coverage are available under the Act and the regulations prescribed pursuant to the Act.", + "enumerated": true, + "marker": "27." + }, + { + "self_ref": "#/texts/77", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 328.41, + "t": 523.5201000000001, + "r": 569.9698200000008, + "b": 449.7837323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 302 + ] + } + ], + "orig": "28. Special Flood Hazard Area (SFHA). An area having special flood or mudflow, and/or flood-related erosion hazards, and shown on a Flood Hazard Boundary Map or Flood Insurance Rate Map as Zone A, AO, A1-A30, AE, A99, AH, AR, AR/A, AR/ AE, AR/AH, AR/AO, AR/A1-A30, V1-V30, VE, or V.", + "text": " Special Flood Hazard Area (SFHA). An area having special flood or mudflow, and/or flood-related erosion hazards, and shown on a Flood Hazard Boundary Map or Flood Insurance Rate Map as Zone A, AO, A1-A30, AE, A99, AH, AR, AR/A, AR/ AE, AR/AH, AR/AO, AR/A1-A30, V1-V30, VE, or V.", + "enumerated": true, + "marker": "28." + }, + { + "self_ref": "#/texts/78", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 328.41, + "t": 441.0201, + "r": 569.9638800000007, + "b": 419.28373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 79 + ] + } + ], + "orig": "29. Unit. A single-family residential space you own in a condominium building.", + "text": " Unit. A single-family residential space you own in a condominium building.", + "enumerated": true, + "marker": "29." + }, + { + "self_ref": "#/texts/79", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 328.41, + "t": 410.5201, + "r": 569.9995200000006, + "b": 349.78373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 233 + ] + } + ], + "orig": "30. Valued Policy. A policy in which the insured and the insurer agree on the value of the property insured, that value being payable in the event of a total loss. The Standard Flood Insurance Policy is not a valued policy.", + "text": " Valued Policy. A policy in which the insured and the insurer agree on the value of the property insured, that value being payable in the event of a total loss. The Standard Flood Insurance Policy is not a valued policy.", + "enumerated": true, + "marker": "30." + }, + { + "self_ref": "#/texts/80", + "parent": { + "$ref": "#/groups/4" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 58.32, + "t": 347.3601, + "r": 299.85903000000025, + "b": 325.6237323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 105 + ] + } + ], + "orig": "25. Principal Residence. The dwelling in which you or your spouse have lived for at least 80 percent of:", + "text": " Principal Residence. The dwelling in which you or your spouse have lived for at least 80 percent of:", + "enumerated": true, + "marker": "25." + }, + { + "self_ref": "#/texts/81", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 245.6692, + "t": 299.54609999999997, + "r": 366.1488999999998, + "b": 289.98029271948604, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "III. PROPERTY INSURED", + "text": "III. PROPERTY INSURED", + "level": 1 + }, + { + "self_ref": "#/texts/82", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 346.4118, + "t": 267.8601, + "r": 569.9676600000009, + "b": 246.12373238512032, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 83 + ] + } + ], + "orig": "are always considered part of the dwelling and cannot be separately insured.", + "text": "are always considered part of the dwelling and cannot be separately insured." + }, + { + "self_ref": "#/texts/83", + "parent": { + "$ref": "#/groups/5" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 346.40549999999996, + "t": 237.3601, + "r": 571.5204, + "b": 70.06846080178173, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 369 + ] + } + ], + "orig": "A detached garage at the described location. Coverage is limited to no more than 10 percent of the limit of liability on the dwelling. Use of this insurance is at your option but reduces the building limit of liability. We do not cover any detached garage used or held for use for residential (i.e., dwelling), business, or farming purposes.", + "text": "A detached garage at the described location. Coverage is limited to no more than 10 percent of the limit of liability on the dwelling. Use of this insurance is at your option but reduces the building limit of liability. We do not cover any detached garage used or held for use for residential (i.e., dwelling), business, or farming purposes.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/84", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 44.82, + "t": 268.20309999999995, + "r": 194.80518449999994, + "b": 258.9790562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 31 + ] + } + ], + "orig": "A. Coverage A-Building Property", + "text": "A. Coverage A-Building Property", + "level": 1 + }, + { + "self_ref": "#/texts/85", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 44.82, + "t": 250.3601, + "r": 292.12695000000014, + "b": 241.62373238512032, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 59 + ] + } + ], + "orig": "We insure against direct physical loss by or from flood to:", + "text": "We insure against direct physical loss by or from flood to:" + }, + { + "self_ref": "#/texts/86", + "parent": { + "$ref": "#/groups/6" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 58.32, + "t": 232.8601, + "r": 299.8768500000003, + "b": 198.12373238512032, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 152 + ] + } + ], + "orig": "1. The dwelling at the described location, or for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety.", + "text": "The dwelling at the described location, or for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety.", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/87", + "parent": { + "$ref": "#/groups/6" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 58.32, + "t": 189.3601, + "r": 299.90259000000015, + "b": 76.62373238512032, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 472 + ] + } + ], + "orig": "2. Additions and extensions attached to and in contact with the dwelling by means of a rigid exterior wall, a solid load-bearing interior wall, a stairway, an elevated walkway, or a roof. At your option, additions and extensions connected by any of these methods may be separately insured. Additions and extensions attached to and in contact with the building by means of a common interior wall that is not a solid load-bearing wall", + "text": "Additions and extensions attached to and in contact with the dwelling by means of a rigid exterior wall, a solid load-bearing interior wall, a stairway, an elevated walkway, or a roof. At your option, additions and extensions connected by any of these methods may be separately insured. Additions and extensions attached to and in contact with the building by means of a common interior wall that is not a solid load-bearing wall", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/88", + "parent": { + "$ref": "#/groups/6" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 328.41, + "t": 237.01710000000003, + "r": 338.74725, + "b": 228.6715365881032, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "3.", + "text": "3.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/89", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/90", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 5, + "bbox": { + "l": 511.695, + "t": 36.13409999999999, + "r": 567.0819000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "PAGE 3 OF 30", + "text": "PAGE 3 OF 30" + }, + { + "self_ref": "#/texts/91", + "parent": { + "$ref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 58.5, + "t": 747.0001, + "r": 299.98359000000005, + "b": 686.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 241 + ] + } + ], + "orig": "4. Materials and supplies to be used for construction, alteration, or repair of the dwelling or a detached garage while the materials and supplies are stored in a fully enclosed building at the described location or on an adjacent property.", + "text": "Materials and supplies to be used for construction, alteration, or repair of the dwelling or a detached garage while the materials and supplies are stored in a fully enclosed building at the described location or on an adjacent property.", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/92", + "parent": { + "$ref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 58.5, + "t": 677.5001, + "r": 299.9707200000003, + "b": 655.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 82 + ] + } + ], + "orig": "5. A building under construction, alteration, or repair at the described location.", + "text": "A building under construction, alteration, or repair at the described location.", + "enumerated": true, + "marker": "5." + }, + { + "self_ref": "#/texts/93", + "parent": { + "$ref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 76.5, + "t": 645.4880999999999, + "r": 301.49355599999984, + "b": 569.7084608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 134 + ] + } + ], + "orig": "a. If the structure is not yet walled or roofed as described in the definition for building (see II.C.6.a) then coverage applies:", + "text": "If the structure is not yet walled or roofed as described in the definition for building (see II.C.6.a) then coverage applies:", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/94", + "parent": { + "$ref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 90.9, + "t": 561.8881, + "r": 283.06799999999987, + "b": 526.0676590551182, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 43 + ] + } + ], + "orig": "(1) Only while such work is in progress; or", + "text": "Only while such work is in progress; or", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/95", + "parent": { + "$ref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 90.9, + "t": 517.3881, + "r": 284.2679880000002, + "b": 461.60646080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 85 + ] + } + ], + "orig": "(2) If such work is halted, only for a period of up to 90 continuous days thereafter.", + "text": "If such work is halted, only for a period of up to 90 continuous days thereafter.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/96", + "parent": { + "$ref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 76.5, + "t": 452.8881, + "r": 301.48108199999984, + "b": 317.1144608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 222 + ] + } + ], + "orig": "b. However, coverage does not apply until the building is walled and roofed if the lowest floor, including the basement floor, of a non-elevated building or the lowest elevated floor of an elevated building is:", + "text": "However, coverage does not apply until the building is walled and roofed if the lowest floor, including the basement floor, of a non-elevated building or the lowest elevated floor of an elevated building is:", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/97", + "parent": { + "$ref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 90.9, + "t": 309.2881, + "r": 287.01000000000005, + "b": 213.46765905511813, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 105 + ] + } + ], + "orig": "(1) Below the base flood elevation in Zones AH, AE, A1-A30, AR, AR/AE, AR/ AH, AR/A1-A30, AR/A, AR/AO; or", + "text": "Below the base flood elevation in Zones AH, AE, A1-A30, AR, AR/AE, AR/ AH, AR/A1-A30, AR/A, AR/AO; or", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/98", + "parent": { + "$ref": "#/groups/7" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 90.9, + "t": 204.7881, + "r": 294.10380000000015, + "b": 129.00846080178178, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 103 + ] + } + ], + "orig": "(2) Below the base flood elevation adjusted to include the effect of wave action in Zones VE or V1-V30.", + "text": "Below the base flood elevation adjusted to include the effect of wave action in Zones VE or V1-V30.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/99", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 76.5, + "t": 119.82010000000002, + "r": 299.98656000000034, + "b": 85.08373238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 153 + ] + }, + { + "page_no": 6, + "bbox": { + "l": 346.5027, + "t": 747.0001, + "r": 567.0202500000004, + "b": 725.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 154, + 225 + ] + } + ], + "orig": "The lowest floor level is based on the bottom of the lowest horizontal structural member of the floor in Zones VE or V1-V30 or the top of the floor in Zones AH, AE, A1-A30, AR, AR/AE, AR/AH, AR/ A1-A30, AR/A, and AR/AO.", + "text": "The lowest floor level is based on the bottom of the lowest horizontal structural member of the floor in Zones VE or V1-V30 or the top of the floor in Zones AH, AE, A1-A30, AR, AR/AE, AR/AH, AR/ A1-A30, AR/A, and AR/AO." + }, + { + "self_ref": "#/texts/100", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 328.5, + "t": 716.5001, + "r": 569.9766600000011, + "b": 655.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 223 + ] + } + ], + "orig": "6. A manufactured home or a travel trailer, as described in the II.C.6. If the manufactured home or travel trailer is in a special flood hazard area, it must be anchored in the following manner at the time of the loss:", + "text": "A manufactured home or a travel trailer, as described in the II.C.6. If the manufactured home or travel trailer is in a special flood hazard area, it must be anchored in the following manner at the time of the loss:", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/101", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 647.0001, + "r": 536.2254, + "b": 625.2044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "a. By over-the-top or frame ties to ground anchors; or", + "text": "By over-the-top or frame ties to ground anchors; or", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/102", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 617.4001000000001, + "r": 533.1207599999997, + "b": 595.6044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 59 + ] + } + ], + "orig": "b. In accordance with the manufacturer's specifications; or", + "text": "In accordance with the manufacturer's specifications; or", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/103", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 587.8001, + "r": 569.98638, + "b": 540.0637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 181 + ] + } + ], + "orig": "c. In compliance with the community's floodplain management requirements unless it has been continuously insured by the NFIP at the same described location since September 30, 1982.", + "text": "In compliance with the community's floodplain management requirements unless it has been continuously insured by the NFIP at the same described location since September 30, 1982.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/104", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 328.5, + "t": 531.3001, + "r": 569.9697300000006, + "b": 509.5637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 75 + ] + } + ], + "orig": "7. The following items of property which are insured under Coverage A only:", + "text": "The following items of property which are insured under Coverage A only:", + "enumerated": true, + "marker": "7." + }, + { + "self_ref": "#/texts/105", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 500.8001, + "r": 462.96440999999953, + "b": 492.0637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 24 + ] + } + ], + "orig": "a. Awnings and canopies;", + "text": "Awnings and canopies;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/106", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 484.2001, + "r": 393.75747000000007, + "b": 475.46373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 10 + ] + } + ], + "orig": "b. Blinds;", + "text": "Blinds;", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/107", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 467.6001, + "r": 453.30003000000033, + "b": 458.86373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 24 + ] + } + ], + "orig": "c. Built-in dishwashers;", + "text": "Built-in dishwashers;", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/108", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 451.00010000000003, + "r": 472.68720000000053, + "b": 442.26373238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 28 + ] + } + ], + "orig": "d. Built-in microwave ovens;", + "text": "Built-in microwave ovens;", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/109", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 434.4001, + "r": 515.5740000000001, + "b": 412.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 57 + ] + } + ], + "orig": "e. Carpet permanently installed over unfinished flooring;", + "text": "Carpet permanently installed over unfinished flooring;", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/110", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 404.8001, + "r": 467.8500600000004, + "b": 396.0637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 28 + ] + } + ], + "orig": "f. Central air conditioners;", + "text": "Central air conditioners;", + "enumerated": true, + "marker": "f." + }, + { + "self_ref": "#/texts/111", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 388.2001, + "r": 450.34983, + "b": 379.46373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 22 + ] + } + ], + "orig": "g. Elevator equipment;", + "text": "Elevator equipment;", + "enumerated": true, + "marker": "g." + }, + { + "self_ref": "#/texts/112", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 371.6001, + "r": 461.94174000000044, + "b": 362.86373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 26 + ] + } + ], + "orig": "h. Fire sprinkler systems;", + "text": "Fire sprinkler systems;", + "enumerated": true, + "marker": "h." + }, + { + "self_ref": "#/texts/113", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 355.00010000000003, + "r": 435.30381000000017, + "b": 346.26373238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 20 + ] + } + ], + "orig": "i. Walk-in freezers;", + "text": "Walk-in freezers;", + "enumerated": true, + "marker": "i." + }, + { + "self_ref": "#/texts/114", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 338.4001, + "r": 466.7353199999996, + "b": 329.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 26 + ] + } + ], + "orig": "j. Furnaces and radiators;", + "text": "Furnaces and radiators;", + "enumerated": true, + "marker": "j." + }, + { + "self_ref": "#/texts/115", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 321.8001, + "r": 466.73730000000006, + "b": 313.0637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 26 + ] + } + ], + "orig": "k. Garbage disposal units;", + "text": "Garbage disposal units;", + "enumerated": true, + "marker": "k." + }, + { + "self_ref": "#/texts/116", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 305.2001, + "r": 538.7964300000007, + "b": 283.46373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 52 + ] + } + ], + "orig": "l. Hot water heaters, including solar water heaters;", + "text": "Hot water heaters, including solar water heaters;", + "enumerated": true, + "marker": "l." + }, + { + "self_ref": "#/texts/117", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 275.6001, + "r": 423.20996999999966, + "b": 266.86373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 19 + ] + } + ], + "orig": "m. Light fixtures;", + "text": " Light fixtures;", + "enumerated": true, + "marker": "m." + }, + { + "self_ref": "#/texts/118", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 259.0001, + "r": 539.3142, + "b": 237.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "n. Outdoor antennas and aerials fastened to buildings;", + "text": "Outdoor antennas and aerials fastened to buildings;", + "enumerated": true, + "marker": "n." + }, + { + "self_ref": "#/texts/119", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 229.40010000000007, + "r": 563.6177099999998, + "b": 207.66373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 81 + ] + } + ], + "orig": "o. Permanently installed cupboards, bookcases, cabinets, paneling, and wallpaper;", + "text": "Permanently installed cupboards, bookcases, cabinets, paneling, and wallpaper;", + "enumerated": true, + "marker": "o." + }, + { + "self_ref": "#/texts/120", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 199.80010000000004, + "r": 441.5695200000001, + "b": 191.06373238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "p. Plumbing fixtures;", + "text": "Plumbing fixtures;", + "enumerated": true, + "marker": "p." + }, + { + "self_ref": "#/texts/121", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 183.20010000000002, + "r": 552.6940499999998, + "b": 174.46373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 43 + ] + } + ], + "orig": "q. Pumps and machinery for operating pumps;", + "text": "Pumps and machinery for operating pumps;", + "enumerated": true, + "marker": "q." + }, + { + "self_ref": "#/texts/122", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 166.6001, + "r": 519.2963999999995, + "b": 157.86373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 37 + ] + } + ], + "orig": "r. Ranges, cooking stoves, and ovens;", + "text": "Ranges, cooking stoves, and ovens;", + "enumerated": true, + "marker": "r." + }, + { + "self_ref": "#/texts/123", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 150.00009999999997, + "r": 441.5913, + "b": 141.20443408577876, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "s. Refrigerators; and", + "text": "Refrigerators; and", + "enumerated": true, + "marker": "s." + }, + { + "self_ref": "#/texts/124", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 346.5, + "t": 133.40010000000007, + "r": 517.2104700000001, + "b": 124.66373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 39 + ] + } + ], + "orig": "t. Wall mirrors, permanently installed.", + "text": "Wall mirrors, permanently installed.", + "enumerated": true, + "marker": "t." + }, + { + "self_ref": "#/texts/125", + "parent": { + "$ref": "#/groups/8" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 327.06, + "t": 114.38810000000001, + "r": 571.5126000000001, + "b": 58.606460801781736, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 106 + ] + } + ], + "orig": "8. Items of property below the lowest elevated floor of an elevated postFIRM building located in Zones", + "text": "Items of property below the lowest elevated floor of an elevated postFIRM building located in Zones", + "enumerated": true, + "marker": "8." + }, + { + "self_ref": "#/texts/126", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/127", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 6, + "bbox": { + "l": 511.605, + "t": 36.13409999999999, + "r": 566.9937000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "PAGE 4 OF 30", + "text": "PAGE 4 OF 30" + }, + { + "self_ref": "#/texts/128", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 76.5, + "t": 747.0002, + "r": 301.5161999999998, + "b": 651.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 150 + ] + } + ], + "orig": "A1-A30, AE, AH, AR, AR/A, AR/ AE, AR/AH, AR/A1-A30, V1-V30, or VE, or in a basement regardless of the zone. Coverage is limited to the following:", + "text": "A1-A30, AE, AH, AR, AR/A, AR/ AE, AR/AH, AR/A1-A30, V1-V30, or VE, or in a basement regardless of the zone. Coverage is limited to the following:", + "level": 1 + }, + { + "self_ref": "#/texts/129", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 76.5, + "t": 642.0322, + "r": 299.96658000000025, + "b": 607.2958323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 139 + ] + } + ], + "orig": "a. Any of the following items, if installed in their functioning locations and, if necessary for operation, connected to a power source:", + "text": "Any of the following items, if installed in their functioning locations and, if necessary for operation, connected to a power source:", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/130", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 599.4322, + "r": 222.47208, + "b": 590.6958323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 29 + ] + } + ], + "orig": "(1) Central air conditioners;", + "text": "Central air conditioners;", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/131", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 582.8322000000001, + "r": 255.79349999999977, + "b": 574.0958323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "(2) Cisterns and the water in them;", + "text": "Cisterns and the water in them;", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/132", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 566.2322, + "r": 299.9880899999999, + "b": 518.4958323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 138 + ] + } + ], + "orig": "(3) Drywall for walls and ceilings in a basement and the cost of labor to nail it, unfinished and unfloated and not taped, to the framing;", + "text": "Drywall for walls and ceilings in a basement and the cost of labor to nail it, unfinished and unfloated and not taped, to the framing;", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/133", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 510.6322, + "r": 249.8596, + "b": 488.89583238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 50 + ] + } + ], + "orig": "(4) Electrical junction and circuit breaker boxes;", + "text": "Electrical junction and circuit breaker boxes;", + "enumerated": true, + "marker": "(4)" + }, + { + "self_ref": "#/texts/134", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 481.0322, + "r": 254.61638999999974, + "b": 472.2958323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "(5) Electrical outlets and switches;", + "text": "Electrical outlets and switches;", + "enumerated": true, + "marker": "(5)" + }, + { + "self_ref": "#/texts/135", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 464.4322, + "r": 299.4218099999999, + "b": 416.69583238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 145 + ] + } + ], + "orig": "(6) Elevators, dumbwaiters and related equipment, except for related equipment installed below the base flood elevation after September 30, 1987;", + "text": "Elevators, dumbwaiters and related equipment, except for related equipment installed below the base flood elevation after September 30, 1987;", + "enumerated": true, + "marker": "(6)" + }, + { + "self_ref": "#/texts/136", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 408.8322, + "r": 257.43887999999976, + "b": 400.09583238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "(7) Fuel tanks and the fuel in them;", + "text": "Fuel tanks and the fuel in them;", + "enumerated": true, + "marker": "(7)" + }, + { + "self_ref": "#/texts/137", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 392.23220000000003, + "r": 259.64657999999986, + "b": 383.49583238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "(8) Furnaces and hot water heaters;", + "text": "Furnaces and hot water heaters;", + "enumerated": true, + "marker": "(8)" + }, + { + "self_ref": "#/texts/138", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 375.6322, + "r": 172.38401999999996, + "b": 366.89583238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 15 + ] + } + ], + "orig": "(9) Heat pumps;", + "text": "Heat pumps;", + "enumerated": true, + "marker": "(9)" + }, + { + "self_ref": "#/texts/139", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 359.0322, + "r": 296.0587799999998, + "b": 350.2958323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 44 + ] + } + ], + "orig": "(10) Nonflammable insulation in a basement;", + "text": " Nonflammable insulation in a basement;", + "enumerated": true, + "marker": "(10)" + }, + { + "self_ref": "#/texts/140", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 342.4322, + "r": 259.73280000000005, + "b": 320.69583238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 51 + ] + } + ], + "orig": "(11) Pumps and tanks used in solar energy systems;", + "text": " Pumps and tanks used in solar energy systems;", + "enumerated": true, + "marker": "(11)" + }, + { + "self_ref": "#/texts/141", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 312.8322, + "r": 287.8512, + "b": 278.0958323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 100 + ] + } + ], + "orig": "(12) Stairways and staircases attached to the building, not separated from it by elevated walkways;", + "text": " Stairways and staircases attached to the building, not separated from it by elevated walkways;", + "enumerated": true, + "marker": "(12)" + }, + { + "self_ref": "#/texts/142", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 270.23220000000003, + "r": 176.87169000000006, + "b": 261.49583238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 17 + ] + } + ], + "orig": "(13) Sump pumps;", + "text": " Sump pumps;", + "enumerated": true, + "marker": "(13)" + }, + { + "self_ref": "#/texts/143", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 253.6322, + "r": 299.9811600000004, + "b": 218.89583238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 139 + ] + } + ], + "orig": "(14) Water softeners and the chemicals in them, water filters, and faucets installed as an integral part of the plumbing system;", + "text": " Water softeners and the chemicals in them, water filters, and faucets installed as an integral part of the plumbing system;", + "enumerated": true, + "marker": "(14)" + }, + { + "self_ref": "#/texts/144", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 211.0322, + "r": 244.28573999999972, + "b": 202.29583238512032, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 33 + ] + } + ], + "orig": "(15) Well water tanks and pumps;", + "text": " Well water tanks and pumps;", + "enumerated": true, + "marker": "(15)" + }, + { + "self_ref": "#/texts/145", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 194.43219999999997, + "r": 299.9752199999997, + "b": 172.63653408577875, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 65 + ] + } + ], + "orig": "(16) Required utility connections for any item in this list; and", + "text": " Required utility connections for any item in this list; and", + "enumerated": true, + "marker": "(16)" + }, + { + "self_ref": "#/texts/146", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 93.96, + "t": 164.83220000000006, + "r": 299.97422999999986, + "b": 117.09583238512039, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 136 + ] + } + ], + "orig": "(17) Footings, foundations, posts, pilings, piers, or other foundation walls and anchorage systems required to support a building.", + "text": " Footings, foundations, posts, pilings, piers, or other foundation walls and anchorage systems required to support a building.", + "enumerated": true, + "marker": "(17)" + }, + { + "self_ref": "#/texts/147", + "parent": { + "$ref": "#/groups/9" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 76.5, + "t": 109.23220000000003, + "r": 135.16721999999996, + "b": 100.49583238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "b. Clean-up.", + "text": "Clean-up.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/148", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 315.0, + "t": 747.0001, + "r": 468.37707300000045, + "b": 737.7760562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 31 + ] + } + ], + "orig": "B. Coverage B-Personal Property", + "text": "B. Coverage B-Personal Property", + "level": 1 + }, + { + "self_ref": "#/texts/149", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 328.5, + "t": 729.1571, + "r": 569.9806200000006, + "b": 681.4207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 178 + ] + } + ], + "orig": "1. If you have purchased personal property coverage, we insure against direct physical loss by or from flood to personal property inside a building at the described location, if:", + "text": "If you have purchased personal property coverage, we insure against direct physical loss by or from flood to personal property inside a building at the described location, if:", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/150", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 346.5, + "t": 672.6571, + "r": 569.9715300000005, + "b": 650.8614340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 69 + ] + } + ], + "orig": "a. The property is owned by you or your household family members; and", + "text": "The property is owned by you or your household family members; and", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/151", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 346.5, + "t": 643.0571, + "r": 538.4489399999998, + "b": 621.3207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 63 + ] + } + ], + "orig": "b. At your option, the property is owned by guests or servants.", + "text": "At your option, the property is owned by guests or servants.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/152", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 328.5, + "t": 612.5571, + "r": 569.973690000001, + "b": 577.8207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 135 + ] + } + ], + "orig": "2. Personal property is also insured for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety.", + "text": "Personal property is also insured for a period of 45 days at another location as set forth in III.C.2.b, Property Removed to Safety.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/153", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 328.5, + "t": 569.0571, + "r": 569.9974500000006, + "b": 495.3207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 306 + ] + } + ], + "orig": "3. Personal property in a building that is not fully enclosed must be secured to prevent flotation out of the building. If the personal property does float out during a flood, it will be conclusively presumed that it was not reasonably secured. In that case, there is no coverage for such property.", + "text": "Personal property in a building that is not fully enclosed must be secured to prevent flotation out of the building. If the personal property does float out during a flood, it will be conclusively presumed that it was not reasonably secured. In that case, there is no coverage for such property.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/154", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 328.5, + "t": 486.5571, + "r": 569.9845800000002, + "b": 451.8207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 128 + ] + } + ], + "orig": "4. Coverage for personal property includes the following property, subject to B.1 above, which is insured under Coverage B only:", + "text": "Coverage for personal property includes the following property, subject to B.1 above, which is insured under Coverage B only:", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/155", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 347.94, + "t": 443.0571, + "r": 566.0590499999998, + "b": 434.3207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 51 + ] + } + ], + "orig": "a. Air conditioning units, portable or window type;", + "text": "Air conditioning units, portable or window type;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/156", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 347.94, + "t": 426.4571, + "r": 540.2665799999996, + "b": 404.72073238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 64 + ] + } + ], + "orig": "b. Carpets, not permanently installed, over unfinished flooring;", + "text": "Carpets, not permanently installed, over unfinished flooring;", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/157", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 347.94, + "t": 396.8571, + "r": 494.1731700000004, + "b": 388.12073238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "c. Carpets over finished flooring;", + "text": "Carpets over finished flooring;", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/158", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 347.94, + "t": 380.25710000000004, + "r": 487.3738500000004, + "b": 371.52073238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 30 + ] + } + ], + "orig": "d. Clothes washers and dryers;", + "text": "Clothes washers and dryers;", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/159", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 347.94, + "t": 363.6571, + "r": 437.46398999999957, + "b": 354.92073238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "e. 'Cook-out' grills;", + "text": "'Cook-out' grills;", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/160", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 347.94, + "t": 347.0571, + "r": 564.5176200000006, + "b": 325.2614340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 66 + ] + } + ], + "orig": "f. Food freezers, other than walk-in, and food in any freezer; and", + "text": "Food freezers, other than walk-in, and food in any freezer; and", + "enumerated": true, + "marker": "f." + }, + { + "self_ref": "#/texts/161", + "parent": { + "$ref": "#/groups/10" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 347.94, + "t": 317.4571, + "r": 542.90988, + "b": 295.72073238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 53 + ] + } + ], + "orig": "g. Portable microwave ovens and portable dishwashers.", + "text": "Portable microwave ovens and portable dishwashers.", + "enumerated": true, + "marker": "g." + }, + { + "self_ref": "#/texts/162", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 327.06, + "t": 286.3451, + "r": 571.5269999999995, + "b": 50.55946080178171, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 386 + ] + } + ], + "orig": "5. Coverage for items of property below the lowest elevated floor of an elevated post-FIRM building located in Zones A1-A30, AE, AH, AR, AR/A, AR/AE, AR/AH, AR/ A1-A30, V1-V30, or VE, or in a basement regardless of the zone, is limited to the following items, if installed in their functioning locations and, if necessary for oper ation, connected to a power source:", + "text": "5. Coverage for items of property below the lowest elevated floor of an elevated post-FIRM building located in Zones A1-A30, AE, AH, AR, AR/A, AR/AE, AR/AH, AR/ A1-A30, V1-V30, or VE, or in a basement regardless of the zone, is limited to the following items, if installed in their functioning locations and, if necessary for oper ation, connected to a power source:", + "level": 1 + }, + { + "self_ref": "#/texts/163", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000005, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/164", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 7, + "bbox": { + "l": 511.69500000000005, + "t": 36.13409999999999, + "r": 567.0855000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "PAGE 5 OF 30", + "text": "PAGE 5 OF 30" + }, + { + "self_ref": "#/texts/165", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 76.5, + "t": 747.0001, + "r": 296.05905000000007, + "b": 738.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 51 + ] + } + ], + "orig": "a. Air conditioning units, portable or window type;", + "text": "Air conditioning units, portable or window type;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/166", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 76.5, + "t": 730.4001000000001, + "r": 236.1168, + "b": 721.6044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "b. Clothes washers and dryers; and", + "text": "Clothes washers and dryers; and", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/167", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 76.5, + "t": 713.8001, + "r": 299.94479999999965, + "b": 692.0637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 62 + ] + } + ], + "orig": "c. Food freezers, other than walk-in, and food in any freezer.", + "text": "Food freezers, other than walk-in, and food in any freezer.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/168", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 58.5, + "t": 684.2001, + "r": 301.50359999999966, + "b": 461.46373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 538 + ] + } + ], + "orig": "6. If you are a tenant and have insured personal property under Coverage B in this policy, we will cover such property, including your cooking stove or range and refrigerator. The policy will also cover improvements made or acquired solely at your expense in the dwelling or apartment in which you reside, but for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability.", + "text": "If you are a tenant and have insured personal property under Coverage B in this policy, we will cover such property, including your cooking stove or range and refrigerator. The policy will also cover improvements made or acquired solely at your expense in the dwelling or apartment in which you reside, but for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability.", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/169", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 57.06, + "t": 451.1881, + "r": 301.5306, + "b": 155.40246080178179, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 492 + ] + } + ], + "orig": "7. If you are the owner of a unit and have insured personal property under Coverage B in this policy, we will also cover your interior walls, floor, and ceiling (not otherwise insured under a flood insurance policy purchased by your condominium association) for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability.", + "text": " If you are the owner of a unit and have insured personal property under Coverage B in this policy, we will also cover your interior walls, floor, and ceiling (not otherwise insured under a flood insurance policy purchased by your condominium association) for not more than 10 percent of the limit of liability shown for personal property on the Declarations Page. Use of this insurance is at your option but reduces the personal property limit of liability.", + "enumerated": true, + "marker": "7." + }, + { + "self_ref": "#/texts/170", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 57.06, + "t": 144.70810000000006, + "r": 301.53599999999983, + "b": 68.92246080178177, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 137 + ] + } + ], + "orig": "8. Special Limits. We will pay no more than $2,500 for any one loss to one or more of the following kinds of personal property:", + "text": "Special Limits. We will pay no more than $2,500 for any one loss to one or more of the following kinds of personal property:", + "enumerated": true, + "marker": "8." + }, + { + "self_ref": "#/texts/171", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 346.5, + "t": 747.0001, + "r": 556.6233600000004, + "b": 712.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 130 + ] + } + ], + "orig": "a. Artwork, photographs, collectibles, or memorabilia, including but not limited to, porcelain or other figures, and sports cards;", + "text": "Artwork, photographs, collectibles, or memorabilia, including but not limited to, porcelain or other figures, and sports cards;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/172", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 346.5, + "t": 704.4001000000001, + "r": 511.5516299999995, + "b": 695.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "b. Rare books or autographed items;", + "text": "Rare books or autographed items;", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/173", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 346.5, + "t": 687.8001, + "r": 564.1691399999999, + "b": 666.0637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 97 + ] + } + ], + "orig": "c. Jewelry, watches, precious and semi-precious stones, or articles of gold, silver, or platinum;", + "text": "Jewelry, watches, precious and semi-precious stones, or articles of gold, silver, or platinum;", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/174", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 346.5, + "t": 658.2001, + "r": 526.1254199999994, + "b": 636.4044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 77 + ] + } + ], + "orig": "d. Furs or any article containing fur that represents its principal value; or", + "text": "Furs or any article containing fur that represents its principal value; or", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/175", + "parent": { + "$ref": "#/groups/11" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 346.5, + "t": 628.6001, + "r": 537.6658500000009, + "b": 619.8637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 42 + ] + } + ], + "orig": "e. Personal property used in any business.", + "text": "Personal property used in any business.", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/176", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 327.06, + "t": 609.5880999999999, + "r": 571.5449999999996, + "b": 573.8024608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 57 + ] + } + ], + "orig": "9. We will pay only for the functional value of antiques.", + "text": "9. We will pay only for the functional value of antiques.", + "level": 1 + }, + { + "self_ref": "#/texts/177", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 315.0, + "t": 555.9630999999999, + "r": 461.8770794999997, + "b": 546.7390562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 29 + ] + } + ], + "orig": "C. Coverage C-Other Coverages", + "text": "C. Coverage C-Other Coverages", + "level": 1 + }, + { + "self_ref": "#/texts/178", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 328.5, + "t": 538.1201, + "r": 414.9555300000003, + "b": 529.3352964085298, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 17 + ] + } + ], + "orig": "1. Debris Removal", + "text": "Debris Removal", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/179", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 346.5, + "t": 520.6201, + "r": 569.9675700000003, + "b": 485.88373238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 136 + ] + } + ], + "orig": "a. We will pay the expense to remove non-owned debris that is on or in insured property and debris of insured property anywhere.", + "text": "We will pay the expense to remove non-owned debris that is on or in insured property and debris of insured property anywhere.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/180", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 346.5, + "t": 478.0201, + "r": 570.0012300000003, + "b": 443.28373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 131 + ] + } + ], + "orig": "b. If you or a member of your household perform the removal work, the value of your work will be based on the Federal minimum wage.", + "text": "If you or a member of your household perform the removal work, the value of your work will be based on the Federal minimum wage.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/181", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 346.5, + "t": 435.4201, + "r": 569.9448000000001, + "b": 413.6837323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 83 + ] + } + ], + "orig": "c. This coverage does not increase the Coverage A or Coverage B limit of liability.", + "text": "This coverage does not increase the Coverage A or Coverage B limit of liability.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/182", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 328.5, + "t": 400.4201, + "r": 458.5937400000005, + "b": 391.6352964085297, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 26 + ] + } + ], + "orig": "2. Loss Avoidance Measures", + "text": "Loss Avoidance Measures", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/183", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 346.5, + "t": 382.9201, + "r": 496.27592999999933, + "b": 374.1352964085297, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 32 + ] + } + ], + "orig": "a. Sandbags, Supplies, and Labor", + "text": "Sandbags, Supplies, and Labor", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/184", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 364.5, + "t": 366.3201, + "r": 569.9862000000005, + "b": 318.58373238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 155 + ] + } + ], + "orig": "(1) We will pay up to $1,000 for costs you incur to protect the insured building from a flood or imminent danger of flood, for the following:", + "text": "We will pay up to $1,000 for costs you incur to protect the insured building from a flood or imminent danger of flood, for the following:", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/185", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 381.6, + "t": 309.8201, + "r": 543.38724, + "b": 301.08373238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 37 + ] + } + ], + "orig": "(a) Your reasonable expenses to buy:", + "text": "(a) Your reasonable expenses to buy:", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/186", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 381.96, + "t": 293.94010000000003, + "r": 562.2934500000001, + "b": 285.20373238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 42 + ] + } + ], + "orig": "(i) Sandbags, including sand to fill them;", + "text": "(i) Sandbags, including sand to fill them;", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/187", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 381.96, + "t": 278.06010000000003, + "r": 505.1179800000002, + "b": 269.32373238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 32 + ] + } + ], + "orig": "(ii) Fill for temporary levees;", + "text": "(ii) Fill for temporary levees;", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/188", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 381.96, + "t": 262.18010000000004, + "r": 449.17240000000004, + "b": 253.38443408577882, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 17 + ] + } + ], + "orig": "(iii) Pumps; and", + "text": "(iii) Pumps; and", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/189", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 381.96, + "t": 246.30010000000004, + "r": 561.2252399999995, + "b": 224.56373238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 70 + ] + } + ], + "orig": "(iv) Plastic sheeting and lumber used in connection with these items.", + "text": "(iv) Plastic sheeting and lumber used in connection with these items.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/190", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 381.6, + "t": 215.80010000000004, + "r": 567.7303499999998, + "b": 181.06373238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 101 + ] + } + ], + "orig": "(b) The value of work, at the Federal minimum wage, that you or a member of your house-hold perform.", + "text": "(b) The value of work, at the Federal minimum wage, that you or a member of your house-hold perform.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/191", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 364.5, + "t": 172.30010000000004, + "r": 569.9743200000003, + "b": 85.56373238512037, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 293 + ] + } + ], + "orig": "(2) This coverage for Sandbags, Supplies, and Labor only applies if damage to insured property by or from flood is imminent and the threat of flood damage is apparent enough to lead a person of common prudence to anticipate flood damage. One of the following must also occur:", + "text": "This coverage for Sandbags, Supplies, and Labor only applies if damage to insured property by or from flood is imminent and the threat of flood damage is apparent enough to lead a person of common prudence to anticipate flood damage. One of the following must also occur:", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/192", + "parent": { + "$ref": "#/groups/12" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 381.6, + "t": 76.80010000000004, + "r": 568.4738400000005, + "b": 55.063732385120375, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 81 + ] + } + ], + "orig": "(a) A general and temporary condition of flooding in the area near the described", + "text": "(a) A general and temporary condition of flooding in the area near the described", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/193", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.23630000000006, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/194", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 8, + "bbox": { + "l": 511.605, + "t": 36.13409999999999, + "r": 566.9955000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "PAGE 6 OF 30", + "text": "PAGE 6 OF 30" + }, + { + "self_ref": "#/texts/195", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 125.82, + "t": 747.0001, + "r": 290.63223000000016, + "b": 725.2044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 70 + ] + } + ], + "orig": "location must occur, even if the flood does not reach the building; or", + "text": "location must occur, even if the flood does not reach the building; or" + }, + { + "self_ref": "#/texts/196", + "parent": { + "$ref": "#/groups/13" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 111.42, + "t": 716.5001, + "r": 287.46918000000016, + "b": 642.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 213 + ] + } + ], + "orig": "(b) A legally authorized official must issue an evacuation order or other civil order for the community in which the building is located calling for measures to preserve life and property from the peril of flood.", + "text": "(b) A legally authorized official must issue an evacuation order or other civil order for the community in which the building is located calling for measures to preserve life and property from the peril of flood.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/197", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 112.31639999999999, + "t": 634.0001, + "r": 299.8689299999999, + "b": 612.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 82 + ] + } + ], + "orig": "This coverage does not increase the Coverage A or Coverage B limit of liability.", + "text": "This coverage does not increase the Coverage A or Coverage B limit of liability." + }, + { + "self_ref": "#/texts/198", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 76.32, + "t": 603.5001, + "r": 218.41155000000018, + "b": 594.7152964085298, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 29 + ] + } + ], + "orig": "b. Property Removed to Safety", + "text": "Property Removed to Safety", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/199", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 94.32, + "t": 586.9001000000001, + "r": 299.90618999999975, + "b": 474.1637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 361 + ] + } + ], + "orig": "(1) We will pay up to $1,000 for the reasonable expenses you incur to move insured property to a place other than the described location that contains the property in order to protect it from flood or the imminent danger of flood. Reasonable expenses include the value of work, at the Federal minimum wage, you or a member of your household perform.", + "text": " We will pay up to $1,000 for the reasonable expenses you incur to move insured property to a place other than the described location that contains the property in order to protect it from flood or the imminent danger of flood. Reasonable expenses include the value of work, at the Federal minimum wage, you or a member of your household perform.", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/200", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 94.32, + "t": 465.4001, + "r": 299.90024999999997, + "b": 326.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 457 + ] + } + ], + "orig": "(2) If you move insured property to a location other than the described location that contains the property in order to protect it from flood or the imminent danger of flood, we will cover such property while at that location for a period of 45 consecutive days from the date you begin to move it there. The personal property that is moved must be placed in a fully enclosed building or otherwise reasonably protected from the elements.", + "text": "If you move insured property to a location other than the described location that contains the property in order to protect it from flood or the imminent danger of flood, we will cover such property while at that location for a period of 45 consecutive days from the date you begin to move it there. The personal property that is moved must be placed in a fully enclosed building or otherwise reasonably protected from the elements.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/201", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 94.32, + "t": 317.9001, + "r": 299.8814400000001, + "b": 270.1637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 162 + ] + } + ], + "orig": "(3) Any property removed, including a moveable home described in II.6.b and c, must be placed above ground level or outside of the special flood hazard area.", + "text": "Any property removed, including a moveable home described in II.6.b and c, must be placed above ground level or outside of the special flood hazard area.", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/202", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 94.32, + "t": 261.40010000000007, + "r": 293.3751600000001, + "b": 239.66373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 84 + ] + } + ], + "orig": "(4) This coverage does not increase the Coverage A or Coverage B limit of liability.", + "text": "This coverage does not increase the Coverage A or Coverage B limit of liability.", + "enumerated": true, + "marker": "(4)" + }, + { + "self_ref": "#/texts/203", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 58.32, + "t": 230.90010000000007, + "r": 222.32915999999997, + "b": 222.11529640852973, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 31 + ] + } + ], + "orig": "3. Condominium Loss Assessments", + "text": "Condominium Loss Assessments", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/204", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 76.32, + "t": 213.40010000000007, + "r": 299.9132999999998, + "b": 61.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 547 + ] + } + ], + "orig": "a. Subject to III.C.3.b below, if this policy insures a condominium unit, we will pay, up to the Coverage A limit of liability, your share of loss assessments charged against you by the condominium association in accordance with the condominium association's articles of association, declarations and your deed. The assessment must be made because of direct physical loss by or from flood during the policy term, to the unit or to the common elements of the NFIP insured condominium building in which this unit is located.", + "text": "Subject to III.C.3.b below, if this policy insures a condominium unit, we will pay, up to the Coverage A limit of liability, your share of loss assessments charged against you by the condominium association in accordance with the condominium association's articles of association, declarations and your deed. The assessment must be made because of direct physical loss by or from flood during the policy term, to the unit or to the common elements of the NFIP insured condominium building in which this unit is located.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/205", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 337.41, + "t": 747.0002, + "r": 525.5290800000001, + "b": 711.2165608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 40 + ] + } + ], + "orig": "b. We will not pay any loss assessment:", + "text": " We will not pay any loss assessment:", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/206", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 358.83, + "t": 703.4001999999999, + "r": 569.3085360000003, + "b": 647.6185608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 82 + ] + } + ], + "orig": "(1) Charged against you and the condominium association by any governmental body;", + "text": " Charged against you and the condominium association by any governmental body;", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/207", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 358.83, + "t": 638.9001999999999, + "r": 566.4189060000001, + "b": 543.1225608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 122 + ] + } + ], + "orig": "(2) That results from a deductible under the insurance purchased by the condominium association insuring common elements;", + "text": " That results from a deductible under the insurance purchased by the condominium association insuring common elements;", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/208", + "parent": { + "$ref": "#/groups/14" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 358.83, + "t": 534.4001999999999, + "r": 544.7196180000004, + "b": 458.61456080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 99 + ] + } + ], + "orig": "(3) That results from a loss to personal property, including contents of a condomin ium building;", + "text": " That results from a loss to personal property, including contents of a condomin ium building;", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/209", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 358.83, + "t": 449.90020000000004, + "r": 570.1955039999999, + "b": 254.09775905511822, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 237 + ] + } + ], + "orig": "(4) In which the total payment combined under all policies exceeds the maximum amount of coverage available under the Act for a single unit in a condominium building where the unit is insured under both a Dwelling Policy and a RCBAP; or", + "text": "(4) In which the total payment combined under all policies exceeds the maximum amount of coverage available under the Act for a single unit in a condominium building where the unit is insured under both a Dwelling Policy and a RCBAP; or", + "level": 1 + }, + { + "self_ref": "#/texts/210", + "parent": { + "$ref": "#/groups/15" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 358.83, + "t": 245.40020000000004, + "r": 569.5756739999996, + "b": 129.62456080178185, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 162 + ] + } + ], + "orig": "(5) On any item of damage that has already been paid under a RCBAP where a single unit in a condominium building is insured by both a Dwelling Policy and a RCBAP.", + "text": "On any item of damage that has already been paid under a RCBAP where a single unit in a condominium building is insured by both a Dwelling Policy and a RCBAP.", + "enumerated": true, + "marker": "(5)" + }, + { + "self_ref": "#/texts/211", + "parent": { + "$ref": "#/groups/15" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 346.41, + "t": 122.41219999999998, + "r": 569.9884499999995, + "b": 61.675832385120316, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 235 + ] + } + ], + "orig": "c. Condominium Loss Assessment coverage does not increase the Coverage A Limit of Liability and is subject to the maximum coverage limits available for a single-family dwelling under the Act, payable between all", + "text": "Condominium Loss Assessment coverage does not increase the Coverage A Limit of Liability and is subject to the maximum coverage limits available for a single-family dwelling under the Act, payable between all", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/212", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/213", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 9, + "bbox": { + "l": 511.695, + "t": 36.13409999999999, + "r": 567.0837, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "PAGE 7 OF 30", + "text": "PAGE 7 OF 30" + }, + { + "self_ref": "#/texts/214", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 94.5, + "t": 747.0001, + "r": 299.93985000000015, + "b": 725.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 53 + ] + } + ], + "orig": "policies issued and covering the unit, under the Act.", + "text": "policies issued and covering the unit, under the Act." + }, + { + "self_ref": "#/texts/215", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 45.0, + "t": 712.3430999999999, + "r": 259.68678299999993, + "b": 703.1190562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 42 + ] + } + ], + "orig": "D. Coverage D-Increased Cost of Compliance", + "text": "D. Coverage D-Increased Cost of Compliance", + "level": 1 + }, + { + "self_ref": "#/texts/216", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 58.5, + "t": 694.5001, + "r": 110.63916, + "b": 685.7152964085298, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 10 + ] + } + ], + "orig": "1. General", + "text": "1. General", + "level": 1 + }, + { + "self_ref": "#/texts/217", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 76.5, + "t": 677.0001, + "r": 299.9895300000001, + "b": 577.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 402 + ] + } + ], + "orig": "This policy pays you to comply with a State or local floodplain management law or ordinance affecting repair or reconstruction of a building suffering flood damage. Compliance activities eligible for payment are: elevation, floodproofing, relocation, or demolition (or any combination of these activities) of your building. Eligible floodproofing activities are limited to:", + "text": "This policy pays you to comply with a State or local floodplain management law or ordinance affecting repair or reconstruction of a building suffering flood damage. Compliance activities eligible for payment are: elevation, floodproofing, relocation, or demolition (or any combination of these activities) of your building. Eligible floodproofing activities are limited to:" + }, + { + "self_ref": "#/texts/218", + "parent": { + "$ref": "#/groups/16" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 76.5, + "t": 568.5001, + "r": 208.09160999999986, + "b": 559.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 29 + ] + } + ], + "orig": "a. Non-residential buildings.", + "text": "Non-residential buildings.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/219", + "parent": { + "$ref": "#/groups/16" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 76.5, + "t": 551.9001000000001, + "r": 299.98539000000017, + "b": 504.1637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 148 + ] + } + ], + "orig": "b. Residential buildings with basements that satisfy FEMA's standards published in the Code of Federal Regulations [44 CFR 60.6(b) or (c)].", + "text": "Residential buildings with basements that satisfy FEMA's standards published in the Code of Federal Regulations [44 CFR 60.6(b) or (c)].", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/220", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 58.5, + "t": 493.24010000000004, + "r": 139.39667999999992, + "b": 484.48087519379845, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "2. Limit of Liability", + "text": "2. Limit of Liability", + "level": 1 + }, + { + "self_ref": "#/texts/221", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 76.5, + "t": 476.6401, + "r": 299.99646000000007, + "b": 311.90373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 586 + ] + } + ], + "orig": "We will pay you up to $30,000 under this Coverage D-Increased Cost of Compliance, which only applies to policies with building coverage (Coverage A). Our payment of claims under Coverage D is in addition to the amount of coverage which you selected on the application and which appears on the Declarations Page. But the maximum you can collect under this policy for both Coverage A-Building Property and Coverage D-Increased Cost of Compliance cannot exceed the maximum permitted under the Act. We do not charge a separate deductible for a claim under Coverage D.", + "text": "We will pay you up to $30,000 under this Coverage D-Increased Cost of Compliance, which only applies to policies with building coverage (Coverage A). Our payment of claims under Coverage D is in addition to the amount of coverage which you selected on the application and which appears on the Declarations Page. But the maximum you can collect under this policy for both Coverage A-Building Property and Coverage D-Increased Cost of Compliance cannot exceed the maximum permitted under the Act. We do not charge a separate deductible for a claim under Coverage D." + }, + { + "self_ref": "#/texts/222", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 58.5, + "t": 300.9801, + "r": 115.94655000000002, + "b": 292.2208751937984, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "3. Eligibility", + "text": "3. Eligibility", + "level": 1 + }, + { + "self_ref": "#/texts/223", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 76.5, + "t": 284.3801, + "r": 299.9626200000001, + "b": 249.6437323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 124 + ] + } + ], + "orig": "a. A building insured under Coverage ABuilding Property sustaining a loss caused by a flood as defined by this policy must:", + "text": "A building insured under Coverage ABuilding Property sustaining a loss caused by a flood as defined by this policy must:", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/224", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 94.5, + "t": 241.78009999999995, + "r": 298.8902700000004, + "b": 207.0437323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 107 + ] + } + ], + "orig": "(1) Be a 'repetitive loss building.' A repetitive loss building is one that meets the following conditions:", + "text": "Be a 'repetitive loss building.' A repetitive loss building is one that meets the following conditions:", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/225", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 111.6, + "t": 198.28009999999995, + "r": 297.6729300000001, + "b": 176.5437323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 84 + ] + } + ], + "orig": "(a) The building is insured by a contract of flood insurance issued under the NFIP.", + "text": "(a) The building is insured by a contract of flood insurance issued under the NFIP.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/226", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 111.6, + "t": 167.78009999999995, + "r": 299.97468000000015, + "b": 120.04373238512039, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 139 + ] + } + ], + "orig": "(b) The building has suffered flood damage on two occasions during a 10-year period which ends on the date of the second loss.", + "text": "(b) The building has suffered flood damage on two occasions during a 10-year period which ends on the date of the second loss.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/227", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 111.6, + "t": 111.28009999999995, + "r": 299.9835900000003, + "b": 63.54373238512039, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 169 + ] + } + ], + "orig": "(c) The cost to repair the flood damage, on average, equaled or exceeded 25 percent of the market value of the building at the time of each flood loss.", + "text": "(c) The cost to repair the flood damage, on average, equaled or exceeded 25 percent of the market value of the building at the time of each flood loss.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/228", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 381.6, + "t": 747.0001, + "r": 569.9845799999996, + "b": 634.2044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 297 + ] + } + ], + "orig": "(d) In addition to the current claim, the NFIP must have paid the previous qualifying claim, and the State or community must have a cumulative, substantial damage provision or repetitive loss provision in its floodplain management law or ordinance being enforced against the building; or", + "text": "(d) In addition to the current claim, the NFIP must have paid the previous qualifying claim, and the State or community must have a cumulative, substantial damage provision or repetitive loss provision in its floodplain management law or ordinance being enforced against the building; or", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/229", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 364.5, + "t": 625.5001, + "r": 569.9951100000009, + "b": 525.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 330 + ] + } + ], + "orig": "(2) Be a building that has had flood damage in which the cost to repair equals or exceeds 50 percent of the market value of the building at the time of the flood. The State or community must have a substantial damage provision in its floodplain management law or ordinance being enforced against the building.", + "text": "Be a building that has had flood damage in which the cost to repair equals or exceeds 50 percent of the market value of the building at the time of the flood. The State or community must have a substantial damage provision in its floodplain management law or ordinance being enforced against the building.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/230", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 346.5, + "t": 517.0001, + "r": 569.9883599999998, + "b": 417.26373238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 337 + ] + } + ], + "orig": "b. This Coverage D pays you to comply with State or local floodplain management laws or ordinances that meet the minimum standards of the National Flood Insurance Program found in the Code of Federal Regulations at 44 CFR 60.3. We pay for compliance activities that exceed those standards under these conditions:", + "text": "This Coverage D pays you to comply with State or local floodplain management laws or ordinances that meet the minimum standards of the National Flood Insurance Program found in the Code of Federal Regulations at 44 CFR 60.3. We pay for compliance activities that exceed those standards under these conditions:", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/231", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 364.5, + "t": 409.4001, + "r": 438.4726199999999, + "b": 400.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 16 + ] + } + ], + "orig": "(1) 3.a.1 above.", + "text": "3.a.1 above.", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/232", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 364.5, + "t": 391.9001, + "r": 569.9832299999998, + "b": 123.16373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 855 + ] + } + ], + "orig": "(2) Elevation or floodproofing in any risk zone to preliminary or advisory base flood elevations provided by FEMA which the State or local government has adopted and is enforcing for flooddamaged buildings in such areas. (This includes compliance activities in B, C, X, or D zones which are being changed to zones with base flood elevations. This also includes compliance activities in zones where base flood elevations are being increased, and a flood-damaged building must comply with the higher advisory base flood elevation.) Increased Cost of Compliance coverage does not apply to situations in B, C, X, or D zones where the community has derived its own elevations and is enforcing elevation or floodproofing requirements for flooddamaged buildings to elevations derived solely by the community.", + "text": "Elevation or floodproofing in any risk zone to preliminary or advisory base flood elevations provided by FEMA which the State or local government has adopted and is enforcing for flooddamaged buildings in such areas. (This includes compliance activities in B, C, X, or D zones which are being changed to zones with base flood elevations. This also includes compliance activities in zones where base flood elevations are being increased, and a flood-damaged building must comply with the higher advisory base flood elevation.) Increased Cost of Compliance coverage does not apply to situations in B, C, X, or D zones where the community has derived its own elevations and is enforcing elevation or floodproofing requirements for flooddamaged buildings to elevations derived solely by the community.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/233", + "parent": { + "$ref": "#/groups/17" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 364.5, + "t": 114.40009999999995, + "r": 569.9822400000002, + "b": 53.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 188 + ] + } + ], + "orig": "(3) Elevation or floodproofing above the base flood elevation to meet State or local 'free-board' requirements, i.e., that a building must be elevated above the base flood elevation.", + "text": "Elevation or floodproofing above the base flood elevation to meet State or local 'free-board' requirements, i.e., that a building must be elevated above the base flood elevation.", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/234", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/235", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 10, + "bbox": { + "l": 511.605, + "t": 36.13409999999999, + "r": 566.9937000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "PAGE 8 OF 30", + "text": "PAGE 8 OF 30" + }, + { + "self_ref": "#/texts/236", + "parent": { + "$ref": "#/groups/18" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 76.5, + "t": 747.0001, + "r": 299.97945, + "b": 647.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 336 + ] + } + ], + "orig": "c. Under the minimum NFIP criteria at 44 CFR 60.3(b)(4), States and communities must require the elevation or floodproofing of buildings in unnumbered A zones to the base flood elevation where elevation data is obtained from a Federal, State, or other source. Such compliance activities are eligible for Coverage D.", + "text": "Under the minimum NFIP criteria at 44 CFR 60.3(b)(4), States and communities must require the elevation or floodproofing of buildings in unnumbered A zones to the base flood elevation where elevation data is obtained from a Federal, State, or other source. Such compliance activities are eligible for Coverage D.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/237", + "parent": { + "$ref": "#/groups/18" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 76.5, + "t": 639.4001000000001, + "r": 300.0022200000002, + "b": 552.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 288 + ] + } + ], + "orig": "d. Coverage D will pay for the incremental cost, after demolition or relocation, of elevating or floodproofing a building during its rebuilding at the same or another site to meet State or local floodplain management laws or ordinances, subject to Coverage D Exclusion 5.g below.", + "text": "Coverage D will pay for the incremental cost, after demolition or relocation, of elevating or floodproofing a building during its rebuilding at the same or another site to meet State or local floodplain management laws or ordinances, subject to Coverage D Exclusion 5.g below.", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/238", + "parent": { + "$ref": "#/groups/18" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 76.5, + "t": 544.8001, + "r": 299.96262, + "b": 471.0637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 268 + ] + } + ], + "orig": "e. Coverage D will pay to bring a flood-damaged building into compliance with State or local floodplain management laws or ordinances even if the building had received a variance before the present loss from the applicable floodplain management requirements.", + "text": "Coverage D will pay to bring a flood-damaged building into compliance with State or local floodplain management laws or ordinances even if the building had received a variance before the present loss from the applicable floodplain management requirements.", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/239", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 58.5, + "t": 460.1401, + "r": 118.83933000000007, + "b": 451.38087519379843, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "4. Conditions", + "text": "4. Conditions", + "level": 1 + }, + { + "self_ref": "#/texts/240", + "parent": { + "$ref": "#/groups/19" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 76.5, + "t": 442.0281, + "r": 301.495338, + "b": 66.2424608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 597 + ] + } + ], + "orig": "a. When a building insured under Coverage A-Building Property sustains a loss caused by a flood, our payment for the loss under this Coverage D will be for the increased cost to elevate, floodproof, relocate, or demolish (or any combination of these activities) caused by the enforcement of current State or local floodplain management ordinances or laws. Our payment for eligible demolition activities will be for the cost to demolish and clear the site of the building debris or a portion thereof caused by the enforcement of current State or local floodplain management", + "text": "When a building insured under Coverage A-Building Property sustains a loss caused by a flood, our payment for the loss under this Coverage D will be for the increased cost to elevate, floodproof, relocate, or demolish (or any combination of these activities) caused by the enforcement of current State or local floodplain management ordinances or laws. Our payment for eligible demolition activities will be for the cost to demolish and clear the site of the building debris or a portion thereof caused by the enforcement of current State or local floodplain management", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/241", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 364.5, + "t": 747.0002, + "r": 571.4686079999999, + "b": 611.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 206 + ] + } + ], + "orig": "ordinances or laws. Eligible activities for the cost of clearing the site will include those necessary to discontinue utility service to the site and ensure proper abandonment of on-site utilities.", + "text": "ordinances or laws. Eligible activities for the cost of clearing the site will include those necessary to discontinue utility service to the site and ensure proper abandonment of on-site utilities." + }, + { + "self_ref": "#/texts/242", + "parent": { + "$ref": "#/groups/20" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 346.5, + "t": 603.4001999999999, + "r": 571.4757359999998, + "b": 467.61456080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 199 + ] + } + ], + "orig": "b. When the building is repaired or rebuilt, it must be intended for the same occupancy as the present building unless otherwise required by current floodplain management ordinances or laws.", + "text": "When the building is repaired or rebuilt, it must be intended for the same occupancy as the present building unless otherwise required by current floodplain management ordinances or laws.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/243", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 328.5, + "t": 458.2522, + "r": 387.5345100000001, + "b": 449.49297519379843, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "5. Exclusions", + "text": "5. Exclusions", + "level": 1 + }, + { + "self_ref": "#/texts/244", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 346.5, + "t": 440.1402, + "r": 571.5269999999999, + "b": 384.3545608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 74 + ] + } + ], + "orig": "Under this Coverage D (Increased Cost of Compliance), we will not pay for:", + "text": "Under this Coverage D (Increased Cost of Compliance), we will not pay for:" + }, + { + "self_ref": "#/texts/245", + "parent": { + "$ref": "#/groups/21" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 346.5, + "t": 373.6402, + "r": 571.4703899999998, + "b": 269.85456080178164, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 132 + ] + } + ], + "orig": "a. The cost to comply with any flood plain management law or ordinance in communities participating in the Emergency Program.", + "text": "The cost to comply with any flood plain management law or ordinance in communities participating in the Emergency Program.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/246", + "parent": { + "$ref": "#/groups/21" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 346.5, + "t": 262.0402, + "r": 571.4703900000001, + "b": 106.25456080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 255 + ] + } + ], + "orig": "b. The cost associated with enforcement of any ordinance or law that requires any insured or others to test for, monitor, clean up, remove, contain, treat, detoxify or neutralize, or in any way respond to, or assess the effects of pollutants.", + "text": "The cost associated with enforcement of any ordinance or law that requires any insured or others to test for, monitor, clean up, remove, contain, treat, detoxify or neutralize, or in any way respond to, or assess the effects of pollutants.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/247", + "parent": { + "$ref": "#/groups/21" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 346.5, + "t": 98.4402, + "r": 571.4668259999999, + "b": 62.65456080178171, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 60 + ] + } + ], + "orig": "c. The loss in value to any insured building due to the", + "text": " The loss in value to any insured building due to the", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/248", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000005, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/249", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 11, + "bbox": { + "l": 511.69500000000005, + "t": 36.13409999999999, + "r": 567.0855000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "PAGE 9 OF 30", + "text": "PAGE 9 OF 30" + }, + { + "self_ref": "#/texts/250", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 94.5, + "t": 747.0002, + "r": 301.47395400000005, + "b": 711.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 37 + ] + } + ], + "orig": "requirements of any ordinance or law.", + "text": "requirements of any ordinance or law.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/251", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 76.5, + "t": 703.4001999999999, + "r": 301.4614799999999, + "b": 587.6145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 181 + ] + } + ], + "orig": "d. The loss in residual value of the undamaged portion of a building demolished as a consequence of enforcement of any State or local flood plain management law or ordinance.", + "text": "The loss in residual value of the undamaged portion of a building demolished as a consequence of enforcement of any State or local flood plain management law or ordinance.", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/252", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 76.5, + "t": 579.8001999999999, + "r": 297.00648, + "b": 544.0145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 62 + ] + } + ], + "orig": "e. Any Increased Cost of Compliance under this Coverage D:", + "text": "Any Increased Cost of Compliance under this Coverage D:", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/253", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 90.9, + "t": 536.2002, + "r": 299.92960800000003, + "b": 460.3797590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 114 + ] + } + ], + "orig": "(1) Until the building is elevated, floodproofed, demolished, or relocated on the same or to another premises; and", + "text": "Until the building is elevated, floodproofed, demolished, or relocated on the same or to another premises; and", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/254", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 90.9, + "t": 451.7002, + "r": 299.61008999999984, + "b": 335.9145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 147 + ] + } + ], + "orig": "(2) Unless the building is elevated, floodproofed, demolished, or relocated as soon as reasonably possible after the loss, not to exceed two years.", + "text": "Unless the building is elevated, floodproofed, demolished, or relocated as soon as reasonably possible after the loss, not to exceed two years.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/255", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 76.5, + "t": 327.2002, + "r": 301.4793, + "b": 231.41456080178182, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 164 + ] + } + ], + "orig": "f. Any code upgrade requirements, e.g., plumbing or electrical wiring, not specifically related to the State or local floodplain management law or ordinance.", + "text": " Any code upgrade requirements, e.g., plumbing or electrical wiring, not specifically related to the State or local floodplain management law or ordinance.", + "enumerated": true, + "marker": "f." + }, + { + "self_ref": "#/texts/256", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 76.5, + "t": 223.60019999999997, + "r": 301.472172, + "b": 87.81456080178168, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 181 + ] + } + ], + "orig": "g. Any compliance activities needed to bring additions or improvements made after the loss occurred into compliance with State or local flood plain management laws or ordinances.", + "text": "Any compliance activities needed to bring additions or improvements made after the loss occurred into compliance with State or local flood plain management laws or ordinances.", + "enumerated": true, + "marker": "g." + }, + { + "self_ref": "#/texts/257", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 346.5, + "t": 747.0002, + "r": 571.4721719999999, + "b": 671.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 102 + ] + } + ], + "orig": "h. Loss due to any ordinance or law that you were required to comply with before the current loss.", + "text": "Loss due to any ordinance or law that you were required to comply with before the current loss.", + "enumerated": true, + "marker": "h." + }, + { + "self_ref": "#/texts/258", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 346.5, + "t": 663.4001999999999, + "r": 571.4810820000005, + "b": 467.61456080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 304 + ] + } + ], + "orig": "i. Any rebuilding activity to standards that do not meet the NFIP's minimum requirements. This includes any situation where the insured has received from the State or community a variance in connection with the current flood loss to rebuild the property to an elevation below the base flood elevation.", + "text": " Any rebuilding activity to standards that do not meet the NFIP's minimum requirements. This includes any situation where the insured has received from the State or community a variance in connection with the current flood loss to rebuild the property to an elevation below the base flood elevation.", + "enumerated": true, + "marker": "i." + }, + { + "self_ref": "#/texts/259", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 346.5, + "t": 459.8002, + "r": 562.1986440000003, + "b": 424.0145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 57 + ] + } + ], + "orig": "j. Increased Cost of Compliance for a garage or carport.", + "text": " Increased Cost of Compliance for a garage or carport.", + "enumerated": true, + "marker": "j." + }, + { + "self_ref": "#/texts/260", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 346.5, + "t": 416.2002, + "r": 553.1741000000001, + "b": 360.4145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 67 + ] + } + ], + "orig": "k. Any building insured under an NFIP Group Flood Insurance Policy.", + "text": "Any building insured under an NFIP Group Flood Insurance Policy.", + "enumerated": true, + "marker": "k." + }, + { + "self_ref": "#/texts/261", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 346.5, + "t": 352.60020000000003, + "r": 571.4668260000001, + "b": 196.81456080178168, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 240 + ] + } + ], + "orig": "l. Assessments made by a condo minium association on individual condominium unit owners to pay increased costs of repairing commonly owned buildings after a flood in compliance with State or local floodplain management ordinances or laws.", + "text": " Assessments made by a condo minium association on individual condominium unit owners to pay increased costs of repairing commonly owned buildings after a flood in compliance with State or local floodplain management ordinances or laws.", + "enumerated": true, + "marker": "l." + }, + { + "self_ref": "#/texts/262", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 328.5, + "t": 187.6322, + "r": 410.2243199999999, + "b": 178.87297519379842, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 19 + ] + } + ], + "orig": "6. Other Provisions", + "text": "Other Provisions", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/263", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 346.5, + "t": 171.0322, + "r": 569.9804400000004, + "b": 97.29583238512032, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 260 + ] + } + ], + "orig": "a. Increased Cost of Compliance coverage will not be included in the calculation to determine whether coverage meets the 80 percent insurance-to-value requirement for replacement cost coverage as set forth in Art. VII.R ('Loss Settlement') of this policy.", + "text": "Increased Cost of Compliance coverage will not be included in the calculation to determine whether coverage meets the 80 percent insurance-to-value requirement for replacement cost coverage as set forth in Art. VII.R ('Loss Settlement') of this policy.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/264", + "parent": { + "$ref": "#/groups/22" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 346.5, + "t": 89.43219999999997, + "r": 569.9616300000001, + "b": 67.6958323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 66 + ] + } + ], + "orig": "b. All other conditions and provisions of this policy apply.", + "text": "All other conditions and provisions of this policy apply.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/265", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.23630000000006, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/266", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 12, + "bbox": { + "l": 506.34900000000005, + "t": 36.13409999999999, + "r": 567.0027000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 10 OF 30", + "text": "PAGE 10 OF 30" + }, + { + "self_ref": "#/texts/267", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_header", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 234.1934, + "t": 739.6460000000001, + "r": 377.8072, + "b": 730.0801927194861, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 24 + ] + } + ], + "orig": "IV. PROPERTY NOT INSURED", + "text": "IV. PROPERTY NOT INSURED" + }, + { + "self_ref": "#/texts/268", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 45.0, + "t": 706.448, + "r": 288.9971999999997, + "b": 690.6623608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 38 + ] + } + ], + "orig": "We do not insure any of the following:", + "text": "We do not insure any of the following:", + "level": 1 + }, + { + "self_ref": "#/texts/269", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 57.06, + "t": 682.848, + "r": 301.4946, + "b": 647.0643608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 43 + ] + } + ], + "orig": "1. Personal property not inside a building.", + "text": "Personal property not inside a building.", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/270", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 57.06, + "t": 636.3679999999999, + "r": 301.5360000000001, + "b": 520.5923608017815, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 204 + ] + } + ], + "orig": "2. A building, and personal property in it, located entirely in, on, or over water or seaward of mean high tide if it was constructed or substantially improved after September 30, 1982.", + "text": "A building, and personal property in it, located entirely in, on, or over water or seaward of mean high tide if it was constructed or substantially improved after September 30, 1982.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/271", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 57.06, + "t": 509.88800000000003, + "r": 301.50539999999984, + "b": 394.1123608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 181 + ] + } + ], + "orig": "3. Open structures, including a building used as a boathouse or any structure or building into which boats are floated, and personal property located in, on, or over water.", + "text": "Open structures, including a building used as a boathouse or any structure or building into which boats are floated, and personal property located in, on, or over water.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/272", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 57.06, + "t": 383.408, + "r": 301.52520000000004, + "b": 287.63036080178176, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 163 + ] + } + ], + "orig": "4. Recreational vehicles other than travel trailers described in the Definitions section (see II.C.6.c) whether affixed to a permanent foundation or on wheels.", + "text": "Recreational vehicles other than travel trailers described in the Definitions section (see II.C.6.c) whether affixed to a permanent foundation or on wheels.", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/273", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 57.06, + "t": 276.928, + "r": 301.5234, + "b": 161.1523608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 185 + ] + } + ], + "orig": "5. Self-propelled vehicles or machines, including their parts and equipment. However, we do cover self-propelled vehicles or machines not licensed for use on public roads that are:", + "text": "Self-propelled vehicles or machines, including their parts and equipment. However, we do cover self-propelled vehicles or machines not licensed for use on public roads that are:", + "enumerated": true, + "marker": "5." + }, + { + "self_ref": "#/texts/274", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 76.5, + "t": 150.44799999999998, + "r": 301.4596979999999, + "b": 114.62955905511808, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 52 + ] + } + ], + "orig": "a. Used mainly to service the described location; or", + "text": "Used mainly to service the described location; or", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/275", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 76.5, + "t": 106.84799999999996, + "r": 301.47395400000005, + "b": 51.066360801781684, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 86 + ] + } + ], + "orig": "b. Designed and used to assist handicapped persons, while the vehicles or machines", + "text": "Designed and used to assist handicapped persons, while the vehicles or machines", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/276", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 364.50864, + "t": 706.446, + "r": 571.4719020000001, + "b": 670.6623608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 53 + ] + } + ], + "orig": "are inside a building at the described location.", + "text": "are inside a building at the described location.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/277", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 324.0, + "t": 659.968, + "r": 571.4783999999997, + "b": 604.1863608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 81 + ] + } + ], + "orig": "6. Land, land values, lawns, trees, shrubs, plants, growing crops, or animals.", + "text": "Land, land values, lawns, trees, shrubs, plants, growing crops, or animals.", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/278", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 324.0, + "t": 593.4879999999999, + "r": 571.5162, + "b": 477.7123608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 185 + ] + } + ], + "orig": "7. Accounts, bills, coins, currency, deeds, evidences of debt, medals, money, scrip, stored value cards, postage stamps, securities, bullion, manuscripts, or other valuable papers.", + "text": "Accounts, bills, coins, currency, deeds, evidences of debt, medals, money, scrip, stored value cards, postage stamps, securities, bullion, manuscripts, or other valuable papers.", + "enumerated": true, + "marker": "7." + }, + { + "self_ref": "#/texts/279", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 324.0, + "t": 467.00800000000004, + "r": 571.5179999999999, + "b": 411.22236080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 93 + ] + } + ], + "orig": "8. Underground structures and equip ment, including wells, septic tanks, and septic systems.", + "text": "Underground structures and equip ment, including wells, septic tanks, and septic systems.", + "enumerated": true, + "marker": "8." + }, + { + "self_ref": "#/texts/280", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 324.0, + "t": 400.528, + "r": 571.5072000000001, + "b": 264.7543608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 257 + ] + } + ], + "orig": "9. Those portions of walks, walkways, decks, driveways, patios and other surfaces, all whether protected by a roof or not, located outside the perimeter, exterior walls of the insured building or the building in which the insured unit is located.", + "text": "Those portions of walks, walkways, decks, driveways, patios and other surfaces, all whether protected by a roof or not, located outside the perimeter, exterior walls of the insured building or the building in which the insured unit is located.", + "enumerated": true, + "marker": "9." + }, + { + "self_ref": "#/texts/281", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 324.0, + "t": 254.048, + "r": 571.5035999999998, + "b": 178.2683608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 112 + ] + } + ], + "orig": "10. Containers, including related equipment, such as, but not limited to, tanks containing gases or liquids.", + "text": "Containers, including related equipment, such as, but not limited to, tanks containing gases or liquids.", + "enumerated": true, + "marker": "10." + }, + { + "self_ref": "#/texts/282", + "parent": { + "$ref": "#/groups/23" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 324.0, + "t": 167.56799999999998, + "r": 571.5233999999998, + "b": 51.79236080178168, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 215 + ] + } + ], + "orig": "11. Buildings or units and all their contents if more than 49 percent of the actual cash value of the building is below ground, unless the lowest level is at or above the base flood elevation and is below", + "text": "Buildings or units and all their contents if more than 49 percent of the actual cash value of the building is below ground, unless the lowest level is at or above the base flood elevation and is below", + "enumerated": true, + "marker": "11." + }, + { + "self_ref": "#/texts/283", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/284", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 13, + "bbox": { + "l": 506.313, + "t": 36.13409999999999, + "r": 567.0882000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 11 OF 30", + "text": "PAGE 11 OF 30" + }, + { + "self_ref": "#/texts/285", + "parent": { + "$ref": "#/groups/24" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 81.0, + "t": 747.0002, + "r": 301.5180000000001, + "b": 671.2205608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 123 + ] + } + ], + "orig": "ground by reason of earth having been used as insulation material in conjunction with energy efficient building techniques.", + "text": "ground by reason of earth having been used as insulation material in conjunction with energy efficient building techniques.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/286", + "parent": { + "$ref": "#/groups/24" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 54.0, + "t": 660.5201999999999, + "r": 301.49640000000016, + "b": 604.7365608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 85 + ] + } + ], + "orig": "12. Fences, retaining walls, seawalls, bulkheads, wharves, piers, bridges, and docks.", + "text": "Fences, retaining walls, seawalls, bulkheads, wharves, piers, bridges, and docks.", + "enumerated": true, + "marker": "12." + }, + { + "self_ref": "#/texts/287", + "parent": { + "$ref": "#/groups/24" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 54.0, + "t": 594.0401999999999, + "r": 301.51439999999957, + "b": 558.2565608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 63 + ] + } + ], + "orig": "13. Aircraft or watercraft, or their furnishings and equipment.", + "text": "Aircraft or watercraft, or their furnishings and equipment.", + "enumerated": true, + "marker": "13." + }, + { + "self_ref": "#/texts/288", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 351.0, + "t": 747.0002, + "r": 567.0, + "b": 711.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 48 + ] + } + ], + "orig": "filters, pumps, and pipes, wherever located.", + "text": "filters, pumps, and pipes, wherever located." + }, + { + "self_ref": "#/texts/289", + "parent": { + "$ref": "#/groups/25" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 324.0, + "t": 700.5201999999999, + "r": 571.5144, + "b": 584.7445608017815, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 185 + ] + } + ], + "orig": "15. Property not eligible for flood insurance pursuant to the provisions of the Coastal Barrier Resources Act and the Coastal Barrier Improvement Act and amendments to these acts.", + "text": "Property not eligible for flood insurance pursuant to the provisions of the Coastal Barrier Resources Act and the Coastal Barrier Improvement Act and amendments to these acts.", + "enumerated": true, + "marker": "15." + }, + { + "self_ref": "#/texts/290", + "parent": { + "$ref": "#/groups/25" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 54.0, + "t": 547.5602, + "r": 301.51079999999985, + "b": 471.78056080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 143 + ] + } + ], + "orig": "14. Hot tubs and spas that are not bathroom fixtures, and swimming pools, and their equipment, such as, but not limited to, heaters,", + "text": "Hot tubs and spas that are not bathroom fixtures, and swimming pools, and their equipment, such as, but not limited to, heaters,", + "enumerated": true, + "marker": "14." + }, + { + "self_ref": "#/texts/291", + "parent": { + "$ref": "#/groups/25" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 324.0, + "t": 574.0401999999999, + "r": 571.5144000000004, + "b": 498.2605608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 125 + ] + } + ], + "orig": "16. Personal property you own in common with other unit owners comprising the membership of a condominium association.", + "text": "Personal property you own in common with other unit owners comprising the membership of a condominium association.", + "enumerated": true, + "marker": "16." + }, + { + "self_ref": "#/texts/292", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 267.2807, + "t": 447.27819999999997, + "r": 344.71849999999995, + "b": 437.71239271948605, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "V. EXCLUSIONS", + "text": "V. EXCLUSIONS", + "level": 1 + }, + { + "self_ref": "#/texts/293", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 45.0, + "t": 414.9802, + "r": 301.5089999999999, + "b": 359.19856080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 108 + ] + } + ], + "orig": "A. We only pay for direct physical loss by or from flood, which means that we do not pay you for:", + "text": "A. We only pay for direct physical loss by or from flood, which means that we do not pay you for:" + }, + { + "self_ref": "#/texts/294", + "parent": { + "$ref": "#/groups/26" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 57.06, + "t": 348.5002, + "r": 250.01640000000003, + "b": 332.7145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 30 + ] + } + ], + "orig": "1. Loss of revenue or profits;", + "text": "Loss of revenue or profits;", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/295", + "parent": { + "$ref": "#/groups/26" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 57.06, + "t": 322.0202, + "r": 282.05459999999994, + "b": 286.2365608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 64 + ] + } + ], + "orig": "2. Loss of access to the insured property or described location;", + "text": "Loss of access to the insured property or described location;", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/296", + "parent": { + "$ref": "#/groups/26" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 57.06, + "t": 275.5402, + "r": 282.05459999999994, + "b": 239.7565608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 61 + ] + } + ], + "orig": "3. Loss of use of the insured property or described location;", + "text": "Loss of use of the insured property or described location;", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/297", + "parent": { + "$ref": "#/groups/26" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 57.06, + "t": 229.0602, + "r": 245.91779999999997, + "b": 193.27656080178178, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 52 + ] + } + ], + "orig": "4. Loss from interruption of business or production;", + "text": "Loss from interruption of business or production;", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/298", + "parent": { + "$ref": "#/groups/26" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 57.06, + "t": 182.5802, + "r": 301.50359999999984, + "b": 106.80056080178178, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 138 + ] + } + ], + "orig": "5. Any additional living expenses incurred while the insured building is being repaired or is unable to be occupied for any reason;", + "text": " Any additional living expenses incurred while the insured building is being repaired or is unable to be occupied for any reason;", + "enumerated": true, + "marker": "5." + }, + { + "self_ref": "#/texts/299", + "parent": { + "$ref": "#/groups/26" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 57.06, + "t": 96.10019999999997, + "r": 301.5359999999999, + "b": 60.31656080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 68 + ] + } + ], + "orig": "6. The cost of complying with any ordinance or law requiring or", + "text": "The cost of complying with any ordinance or law requiring or", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/300", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 346.5, + "t": 414.98820000000006, + "r": 571.5035999999999, + "b": 259.1697590551182, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 260 + ] + } + ], + "orig": "regulating the construction, demolition, remodeling, renovation, or repair of property, including removal of any resulting debris. This exclusion does not apply to any eligible activities we describe in Coverage D-Increased Cost of Compliance; or", + "text": "regulating the construction, demolition, remodeling, renovation, or repair of property, including removal of any resulting debris. This exclusion does not apply to any eligible activities we describe in Coverage D-Increased Cost of Compliance; or" + }, + { + "self_ref": "#/texts/301", + "parent": { + "$ref": "#/groups/27" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 327.06, + "t": 248.50019999999995, + "r": 521.928, + "b": 212.71656080178172, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 39 + ] + } + ], + "orig": "7. Any other economic loss you suffer.", + "text": " Any other economic loss you suffer.", + "enumerated": true, + "marker": "7." + }, + { + "self_ref": "#/texts/302", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 315.0, + "t": 198.42020000000002, + "r": 571.5288, + "b": 62.64656080178179, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 286 + ] + } + ], + "orig": "B. Flood in Progress. If this policy became effective as of the time of a loan closing, as provided by 44 CFR 61.11(b), we will not pay for a loss caused by a flood that is a continuation of a flood that existed prior to coverage becoming effective.", + "text": "B. Flood in Progress. If this policy became effective as of the time of a loan closing, as provided by 44 CFR 61.11(b), we will not pay for a loss caused by a flood that is a continuation of a flood that existed prior to coverage becoming effective." + }, + { + "self_ref": "#/texts/303", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/304", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 14, + "bbox": { + "l": 506.124, + "t": 36.13409999999999, + "r": 566.9937000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 12 OF 30", + "text": "PAGE 12 OF 30" + }, + { + "self_ref": "#/texts/305", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 45.0, + "t": 747.0002, + "r": 301.5287999999998, + "b": 591.2285608017814, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 303 + ] + } + ], + "orig": "In all other circumstances, we will not pay for a loss caused by a flood that is a continuation of a flood that existed on or before the day you submitted the application for coverage under this policy and the full amount due. We will determine the date of application using 44 CFR 61.11(f).", + "text": "In all other circumstances, we will not pay for a loss caused by a flood that is a continuation of a flood that existed on or before the day you submitted the application for coverage under this policy and the full amount due. We will determine the date of application using 44 CFR 61.11(f)." + }, + { + "self_ref": "#/texts/306", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 44.99999999999999, + "t": 576.9201999999999, + "r": 301.5306000000003, + "b": 461.1445608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 184 + ] + } + ], + "orig": "C. We do not insure for loss to property caused directly by earth movement even if the earth movement is caused by flood. Some examples of earth movement that we do not cover are:", + "text": "C. We do not insure for loss to property caused directly by earth movement even if the earth movement is caused by flood. Some examples of earth movement that we do not cover are:" + }, + { + "self_ref": "#/texts/307", + "parent": { + "$ref": "#/groups/28" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 57.06, + "t": 450.4402, + "r": 154.63079999999997, + "b": 434.6545608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 15 + ] + } + ], + "orig": "1. Earthquake;", + "text": " Earthquake;", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/308", + "parent": { + "$ref": "#/groups/28" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 57.06, + "t": 423.9602, + "r": 142.91999999999993, + "b": 408.1745608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "2. Landslide;", + "text": " Landslide;", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/309", + "parent": { + "$ref": "#/groups/28" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 57.06, + "t": 397.4802, + "r": 190.05839999999995, + "b": 381.69456080178173, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 20 + ] + } + ], + "orig": "3. Land subsidence;", + "text": " Land subsidence;", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/310", + "parent": { + "$ref": "#/groups/28" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 57.06, + "t": 371.0002, + "r": 143.49419999999998, + "b": 355.2145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "4. Sinkholes;", + "text": " Sinkholes;", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/311", + "parent": { + "$ref": "#/groups/28" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 57.06, + "t": 344.5202, + "r": 291.4308, + "b": 268.70175905511815, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 106 + ] + } + ], + "orig": "5. Destabilization or movement of land that results from accumulation of water in subsurface land area; or", + "text": "Destabilization or movement of land that results from accumulation of water in subsurface land area; or", + "enumerated": true, + "marker": "5." + }, + { + "self_ref": "#/texts/312", + "parent": { + "$ref": "#/groups/28" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 57.06, + "t": 258.0402, + "r": 183.72959999999992, + "b": 242.25456080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 19 + ] + } + ], + "orig": "6. Gradual erosion.", + "text": "Gradual erosion.", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/313", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 45.0, + "t": 231.56220000000008, + "r": 301.5107999999998, + "b": 135.78456080178182, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 194 + ] + } + ], + "orig": "We do, however, pay for losses from mudflow and land subsidence as a result of erosion that are specifically insured under our definition of flood (see II.B.1.c and II.B.2).", + "text": "We do, however, pay for losses from mudflow and land subsidence as a result of erosion that are specifically insured under our definition of flood (see II.B.1.c and II.B.2)." + }, + { + "self_ref": "#/texts/314", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 45.0, + "t": 120.58019999999999, + "r": 301.5287999999998, + "b": 64.79856080178172, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 104 + ] + } + ], + "orig": "D. We do not insure for direct physical loss caused directly or indirectly by any of the following:", + "text": "D. We do not insure for direct physical loss caused directly or indirectly by any of the following:" + }, + { + "self_ref": "#/texts/315", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 327.06, + "t": 747.0002, + "r": 537.2063999999997, + "b": 731.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "1. The pressure or weight of ice;", + "text": " The pressure or weight of ice;", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/316", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 327.06, + "t": 720.5201999999999, + "r": 475.7381999999996, + "b": 704.7345608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 24 + ] + } + ], + "orig": "2. Freezing or thawing;", + "text": " Freezing or thawing;", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/317", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 327.06, + "t": 694.0401999999999, + "r": 517.4639999999999, + "b": 658.2565608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 44 + ] + } + ], + "orig": "3. Rain, snow, sleet, hail, or water spray;", + "text": " Rain, snow, sleet, hail, or water spray;", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/318", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 327.06, + "t": 647.5602, + "r": 571.5197999999999, + "b": 591.7785608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 86 + ] + } + ], + "orig": "4. Water, moisture, mildew, or mold damage that results primarily from any condition:", + "text": " Water, moisture, mildew, or mold damage that results primarily from any condition:", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/319", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 346.5, + "t": 581.0802, + "r": 553.6646460000006, + "b": 545.2617590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 45 + ] + } + ], + "orig": "a. Substantially confined to the dwelling; or", + "text": "Substantially confined to the dwelling; or", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/320", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 346.5, + "t": 537.4802, + "r": 571.4490060000002, + "b": 501.69656080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 61 + ] + } + ], + "orig": "b. That is within your control, including but not limited to:", + "text": "That is within your control, including but not limited to:", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/321", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 360.9, + "t": 493.8802, + "r": 518.7508559999995, + "b": 458.0965608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 46 + ] + } + ], + "orig": "(1) Design, structural, or mechanical defects;", + "text": "Design, structural, or mechanical defects;", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/322", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 360.9, + "t": 449.3802, + "r": 556.9428599999998, + "b": 373.5657590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 101 + ] + } + ], + "orig": "(2) Failure, stoppage, or breakage of water or sewer lines, drains, pumps, fixtures, or equipment; or", + "text": "Failure, stoppage, or breakage of water or sewer lines, drains, pumps, fixtures, or equipment; or", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/323", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 360.9, + "t": 364.8802, + "r": 561.22056, + "b": 309.09856080178173, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 71 + ] + } + ], + "orig": "(3) Failure to inspect and maintain the property after a flood recedes;", + "text": "Failure to inspect and maintain the property after a flood recedes;", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/324", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 327.06, + "t": 300.3802, + "r": 499.068, + "b": 264.5965608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 38 + ] + } + ], + "orig": "5. Water or water-borne material that:", + "text": "Water or water-borne material that:", + "enumerated": true, + "marker": "5." + }, + { + "self_ref": "#/texts/325", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 346.5, + "t": 253.90020000000004, + "r": 547.45794, + "b": 218.11656080178182, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 37 + ] + } + ], + "orig": "a. Backs up through sewers or drains;", + "text": "Backs up through sewers or drains;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/326", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 346.5, + "t": 210.30020000000002, + "r": 564.1196399999997, + "b": 154.48375905511807, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 75 + ] + } + ], + "orig": "b. Discharges or overflows from a sump, sump pump, or related equipment; or", + "text": "Discharges or overflows from a sump, sump pump, or related equipment; or", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/327", + "parent": { + "$ref": "#/groups/29" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 346.5, + "t": 146.7002, + "r": 564.0073739999996, + "b": 110.91656080178177, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "c. Seeps or leaks on or through the insured property;", + "text": " Seeps or leaks on or through the insured property;", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/328", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 347.00076, + "t": 103.10419999999999, + "r": 571.4882099999995, + "b": 67.32056080178177, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 71 + ] + }, + { + "page_no": 16, + "bbox": { + "l": 77.0, + "t": 747.0002, + "r": 301.48745, + "b": 671.2205608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 72, + 168 + ] + } + ], + "orig": "unless there is a flood in the area and the flood is the proximate cause of the sewer or drain backup, sump pump discharge or overflow, or the seepage of water;", + "text": "unless there is a flood in the area and the flood is the proximate cause of the sewer or drain backup, sump pump discharge or overflow, or the seepage of water;" + }, + { + "self_ref": "#/texts/329", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/330", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 15, + "bbox": { + "l": 506.286, + "t": 36.13409999999999, + "r": 567.0918, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 13 OF 30", + "text": "PAGE 13 OF 30" + }, + { + "self_ref": "#/texts/331", + "parent": { + "$ref": "#/groups/30" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 57.06, + "t": 662.5002, + "r": 301.5215999999998, + "b": 566.7225608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 174 + ] + } + ], + "orig": "6. The pressure or weight of water unless there is a flood in the area and the flood is the proximate cause of the damage from the pressure or weight of water;", + "text": "The pressure or weight of water unless there is a flood in the area and the flood is the proximate cause of the damage from the pressure or weight of water;", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/332", + "parent": { + "$ref": "#/groups/30" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 57.06, + "t": 556.0201999999999, + "r": 301.51439999999997, + "b": 440.2445608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 186 + ] + } + ], + "orig": "7. Power, heating, or cooling failure unless the failure results from direct physical loss by or from flood to power, heating, or cooling equipment on the described location;", + "text": " Power, heating, or cooling failure unless the failure results from direct physical loss by or from flood to power, heating, or cooling equipment on the described location;", + "enumerated": true, + "marker": "7." + }, + { + "self_ref": "#/texts/333", + "parent": { + "$ref": "#/groups/30" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 57.06, + "t": 429.5402, + "r": 270.23400000000004, + "b": 393.75656080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 46 + ] + } + ], + "orig": "8. Theft, fire, explosion, wind, or windstorm;", + "text": "Theft, fire, explosion, wind, or windstorm;", + "enumerated": true, + "marker": "8." + }, + { + "self_ref": "#/texts/334", + "parent": { + "$ref": "#/groups/30" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 54.0, + "t": 383.0602, + "r": 301.5306000000001, + "b": 347.2765608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 66 + ] + } + ], + "orig": "9. Anything you or any member of your household do or conspire", + "text": "Anything you or any member of your household do or conspire", + "enumerated": true, + "marker": "9." + }, + { + "self_ref": "#/texts/335", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 351.0, + "t": 747.0021999999999, + "r": 571.4964000000001, + "b": 711.183759055118, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 45 + ] + } + ], + "orig": "to do to deliberately cause loss by flood; or", + "text": "to do to deliberately cause loss by flood; or" + }, + { + "self_ref": "#/texts/336", + "parent": { + "$ref": "#/groups/31" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 324.0, + "t": 700.5201999999999, + "r": 571.5143999999997, + "b": 644.7385608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 92 + ] + } + ], + "orig": "10. Alteration of the insured property that significantly increases the risk of flooding.", + "text": "Alteration of the insured property that significantly increases the risk of flooding.", + "enumerated": true, + "marker": "10." + }, + { + "self_ref": "#/texts/337", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 315.0, + "t": 629.5401999999999, + "r": 571.5359999999997, + "b": 433.7725608017815, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 360 + ] + } + ], + "orig": "E. We do not insure for loss to any building or personal property located on land leased from the Federal Government, arising from or incident to the flooding of the land by the Federal Government, where the lease expressly holds the Federal Government harmless under flood insurance issued under any Federal Government program.", + "text": "E. We do not insure for loss to any building or personal property located on land leased from the Federal Government, arising from or incident to the flooding of the land by the Federal Government, where the lease expressly holds the Federal Government harmless under flood insurance issued under any Federal Government program." + }, + { + "self_ref": "#/texts/338", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 315.0, + "t": 418.5602, + "r": 571.5305999999999, + "b": 362.77856080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 105 + ] + } + ], + "orig": "F. We do not pay for the testing for or monitoring of pollutants unless required by law or ordinance.", + "text": "F. We do not pay for the testing for or monitoring of pollutants unless required by law or ordinance." + }, + { + "self_ref": "#/texts/339", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 262.1274, + "t": 322.77819999999997, + "r": 349.87550000000033, + "b": 313.21239271948605, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 15 + ] + } + ], + "orig": "VI. DEDUCTIBLES", + "text": "VI. DEDUCTIBLES", + "level": 1 + }, + { + "self_ref": "#/texts/340", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 45.0, + "t": 291.9922, + "r": 299.99253000000016, + "b": 244.25583238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 247 + ] + } + ], + "orig": "A. When a loss is insured under this policy, we will pay only that part of the loss that exceeds your deductible amount, subject to the limit of liability that applies. The deductible amount is shown on the Declarations Page.", + "text": "A. When a loss is insured under this policy, we will pay only that part of the loss that exceeds your deductible amount, subject to the limit of liability that applies. The deductible amount is shown on the Declarations Page." + }, + { + "self_ref": "#/texts/341", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 315.0, + "t": 291.9922, + "r": 569.97966, + "b": 270.25583238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 116 + ] + } + ], + "orig": "B. In each loss from flood, separate deductibles apply to the building and personal property insured by this policy.", + "text": "B. In each loss from flood, separate deductibles apply to the building and personal property insured by this policy." + }, + { + "self_ref": "#/texts/342", + "parent": { + "$ref": "#/groups/32" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 315.0, + "t": 257.8922, + "r": 474.8931299999994, + "b": 249.10739640852967, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "C. The deductible does NOT apply to:", + "text": "The deductible does NOT apply to:", + "enumerated": true, + "marker": "C." + }, + { + "self_ref": "#/texts/343", + "parent": { + "$ref": "#/groups/32" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 328.5, + "t": 240.3922, + "r": 495.9504000000007, + "b": 231.65583238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "1. III.C.2. Loss Avoidance Measures;", + "text": "III.C.2. Loss Avoidance Measures;", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/344", + "parent": { + "$ref": "#/groups/32" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 328.5, + "t": 222.8922, + "r": 539.3421, + "b": 214.09653408577879, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 44 + ] + } + ], + "orig": "2. III.C.3. Condominium Loss Assessments; or", + "text": "III.C.3. Condominium Loss Assessments; or", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/345", + "parent": { + "$ref": "#/groups/32" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 328.5, + "t": 205.3922, + "r": 504.67626000000104, + "b": 196.65583238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 39 + ] + } + ], + "orig": "3. III.D. Increased Cost of Compliance.", + "text": "III.D. Increased Cost of Compliance.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/346", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 45.0012, + "t": 230.99220000000003, + "r": 300.0004499999999, + "b": 170.25583238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 292 + ] + } + ], + "orig": "However, when a building under construction, alteration, or repair does not have at least two rigid exterior walls and a fully secured roof at the time of loss, your deductible amount will be two times the deductible that would otherwise apply to a completed building.", + "text": "However, when a building under construction, alteration, or repair does not have at least two rigid exterior walls and a fully secured roof at the time of loss, your deductible amount will be two times the deductible that would otherwise apply to a completed building." + }, + { + "self_ref": "#/texts/347", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/348", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 16, + "bbox": { + "l": 506.313, + "t": 36.13409999999999, + "r": 566.9982000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 14 OF 30", + "text": "PAGE 14 OF 30" + }, + { + "self_ref": "#/texts/349", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_header", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 239.0119, + "t": 739.6460000000001, + "r": 372.99080000000015, + "b": 730.0801927194861, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "VII. GENERAL CONDITIONS", + "text": "VII. GENERAL CONDITIONS" + }, + { + "self_ref": "#/texts/350", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 45.0, + "t": 708.303, + "r": 144.98939250000006, + "b": 699.0789562289563, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 22 + ] + } + ], + "orig": "A. Pair and Set Clause", + "text": "A. Pair and Set Clause", + "level": 1 + }, + { + "self_ref": "#/texts/351", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 45.0, + "t": 690.46, + "r": 299.9259900000003, + "b": 668.7236323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 99 + ] + } + ], + "orig": "In case of loss to an article that is part of a pair or set, we will have the option of paying you:", + "text": "In case of loss to an article that is part of a pair or set, we will have the option of paying you:" + }, + { + "self_ref": "#/texts/352", + "parent": { + "$ref": "#/groups/33" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 58.5, + "t": 660.86, + "r": 299.9984400000002, + "b": 626.0643340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 125 + ] + } + ], + "orig": "1. An amount equal to the cost of replacing the lost, damaged, or destroyed article, minus its depreciation; or", + "text": "An amount equal to the cost of replacing the lost, damaged, or destroyed article, minus its depreciation; or", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/353", + "parent": { + "$ref": "#/groups/33" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 58.5, + "t": 617.36, + "r": 299.97962999999993, + "b": 569.6236323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 172 + ] + } + ], + "orig": "2. The amount that represents the fair proportion of the total value of the pair or set that the lost, damaged, or destroyed article bears to the pair or set.", + "text": "The amount that represents the fair proportion of the total value of the pair or set that the lost, damaged, or destroyed article bears to the pair or set.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/354", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 45.0, + "t": 556.703, + "r": 128.12766299999996, + "b": 547.4789562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 18 + ] + } + ], + "orig": "B. Other Insurance", + "text": "B. Other Insurance", + "level": 1 + }, + { + "self_ref": "#/texts/355", + "parent": { + "$ref": "#/groups/34" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 57.06, + "t": 537.348, + "r": 301.5414000000001, + "b": 361.5783608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 298 + ] + } + ], + "orig": "1. If a loss insured by this policy is also insured by other insurance that includes flood coverage not issued under the Act, we will not pay more than the amount of insurance you are entitled to for lost, damaged, or destroyed property insured under this policy subject to the following:", + "text": "If a loss insured by this policy is also insured by other insurance that includes flood coverage not issued under the Act, we will not pay more than the amount of insurance you are entitled to for lost, damaged, or destroyed property insured under this policy subject to the following:", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/356", + "parent": { + "$ref": "#/groups/34" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 76.5, + "t": 350.868, + "r": 301.49533799999995, + "b": 215.09436080178182, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 229 + ] + } + ], + "orig": "a. We will pay only the proportion of the loss that the amount of insurance that applies under this policy bears to the total amount of insurance covering the loss, unless VII.B.1.b or c immediately below applies.", + "text": "We will pay only the proportion of the loss that the amount of insurance that applies under this policy bears to the total amount of insurance covering the loss, unless VII.B.1.b or c immediately below applies.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/357", + "parent": { + "$ref": "#/groups/34" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 76.5, + "t": 206.36800000000005, + "r": 301.45078799999993, + "b": 130.58836080178185, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 105 + ] + } + ], + "orig": "b. If the other policy has a provision stating that it is excess insurance, this policy will be primary.", + "text": "If the other policy has a provision stating that it is excess insurance, this policy will be primary.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/358", + "parent": { + "$ref": "#/groups/34" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 76.5, + "t": 121.86799999999994, + "r": 301.456134, + "b": 86.08436080178171, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 71 + ] + } + ], + "orig": "c. This policy will be primary (but subject to its own deductible)", + "text": " This policy will be primary (but subject to its own deductible)", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/359", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 364.50864, + "t": 706.454, + "r": 571.4915040000004, + "b": 490.6883608017813, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 343 + ] + } + ], + "orig": "up to the deductible in the other flood policy (except another policy as described in VII.B.1.b above). When the other deductible amount is reached, this policy will participate in the same proportion that the amount of insurance under this policy bears to the total amount of both policies, for the remainder of the loss.", + "text": "up to the deductible in the other flood policy (except another policy as described in VII.B.1.b above). When the other deductible amount is reached, this policy will participate in the same proportion that the amount of insurance under this policy bears to the total amount of both policies, for the remainder of the loss." + }, + { + "self_ref": "#/texts/360", + "parent": { + "$ref": "#/groups/35" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 327.06, + "t": 481.94800000000004, + "r": 571.5341999999998, + "b": 126.1963608017819, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 564 + ] + } + ], + "orig": "2. If there is other insurance issued under the Act in the name of your condominium association covering the same property insured by this policy, then this policy will be in excess over the other insurance, except where a condominium loss assessment to the unit owner results from a loss sustained by the condominium association that was not reimbursed under a flood insurance policy written in the name of the association under the Act because the building was not, at the time of loss, insured for an amount equal to the lesser of:", + "text": "If there is other insurance issued under the Act in the name of your condominium association covering the same property insured by this policy, then this policy will be in excess over the other insurance, except where a condominium loss assessment to the unit owner results from a loss sustained by the condominium association that was not reimbursed under a flood insurance policy written in the name of the association under the Act because the building was not, at the time of loss, insured for an amount equal to the lesser of:", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/361", + "parent": { + "$ref": "#/groups/35" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 346.5, + "t": 115.46799999999996, + "r": 554.7249360000004, + "b": 79.64955905511806, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "a. 80 percent or more of its full replacement cost; or", + "text": "80 percent or more of its full replacement cost; or", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/362", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/363", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 17, + "bbox": { + "l": 506.286, + "t": 36.13409999999999, + "r": 567.0855000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 15 OF 30", + "text": "PAGE 15 OF 30" + }, + { + "self_ref": "#/texts/364", + "parent": { + "$ref": "#/groups/36" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 76.5, + "t": 747.0002, + "r": 277.75553399999995, + "b": 691.2185608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 59 + ] + } + ], + "orig": "b. The maximum amount of insurance permitted under the Act.", + "text": "The maximum amount of insurance permitted under the Act.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/365", + "parent": { + "$ref": "#/groups/36" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 57.06, + "t": 682.5002, + "r": 301.5180000000001, + "b": 566.7245608017815, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 172 + ] + } + ], + "orig": "3. The combined coverage payment under the other NFIP insurance and this policy cannot exceed the maximum coverage available under the Act, of $250,000 per single unit.", + "text": "The combined coverage payment under the other NFIP insurance and this policy cannot exceed the maximum coverage available under the Act, of $250,000 per single unit.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/366", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 45.0, + "t": 553.3752, + "r": 216.11510100000018, + "b": 544.1511562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "C. Amendments, Waivers, Assignment", + "text": "C. Amendments, Waivers, Assignment", + "level": 1 + }, + { + "self_ref": "#/texts/367", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 45.0, + "t": 535.5322, + "r": 300.00321000000025, + "b": 448.7958323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 382 + ] + } + ], + "orig": "This policy cannot be changed, nor can any of its provisions be waived, without the express written consent of the Federal Insurance Administrator. No action we take under the terms of this policy constitutes a waiver of any of our rights. You may assign this policy in writing when you transfer title of your property to someone else except under these conditions:", + "text": "This policy cannot be changed, nor can any of its provisions be waived, without the express written consent of the Federal Insurance Administrator. No action we take under the terms of this policy constitutes a waiver of any of our rights. You may assign this policy in writing when you transfer title of your property to someone else except under these conditions:" + }, + { + "self_ref": "#/texts/368", + "parent": { + "$ref": "#/groups/37" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 76.5, + "t": 440.9322, + "r": 265.473, + "b": 419.1365340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "a. When this policy insures only personal property; or", + "text": "When this policy insures only personal property; or", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/369", + "parent": { + "$ref": "#/groups/37" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 76.5, + "t": 411.3322, + "r": 273.8959200000002, + "b": 389.59583238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 58 + ] + } + ], + "orig": "b. When this policy insures a building under construction.", + "text": "When this policy insures a building under construction.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/370", + "parent": { + "$ref": "#/groups/37" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 45.0, + "t": 377.5752, + "r": 248.80529699999994, + "b": 368.35115622895626, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 45 + ] + } + ], + "orig": "D. Insufficient Premium or Rating Information", + "text": "Insufficient Premium or Rating Information", + "enumerated": true, + "marker": "D." + }, + { + "self_ref": "#/texts/371", + "parent": { + "$ref": "#/groups/37" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 57.06, + "t": 358.22020000000003, + "r": 301.51620000000014, + "b": 222.4445608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 228 + ] + } + ], + "orig": "1. Applicability. The following provisions apply to all instances where the premium paid on this policy is insufficient or where the rating information is insufficient, such as where an Elevation Certificate is not provided.", + "text": "Applicability. The following provisions apply to all instances where the premium paid on this policy is insufficient or where the rating information is insufficient, such as where an Elevation Certificate is not provided.", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/372", + "parent": { + "$ref": "#/groups/37" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 57.06, + "t": 211.74019999999996, + "r": 301.5252000000002, + "b": 55.96856080178179, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 254 + ] + } + ], + "orig": "2. Reforming the Policy with Re\u00ad duced Coverage. Except as otherwise provided in VII.D.1, if the premium we received from you was not sufficient to buy the kinds and amounts of coverage you requested, we will provide only the kinds and", + "text": "Reforming the Policy with Re\u00ad duced Coverage. Except as otherwise provided in VII.D.1, if the premium we received from you was not sufficient to buy the kinds and amounts of coverage you requested, we will provide only the kinds and", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/373", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 346.5, + "t": 747.0062, + "r": 571.5126000000002, + "b": 691.2245608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 86 + ] + } + ], + "orig": "amounts of coverage that can be purchased for the premium payment we received.", + "text": "amounts of coverage that can be purchased for the premium payment we received." + }, + { + "self_ref": "#/texts/374", + "parent": { + "$ref": "#/groups/38" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 346.5, + "t": 680.5201999999999, + "r": 571.4632620000001, + "b": 544.7465608017815, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 207 + ] + } + ], + "orig": "a. For the purpose of determining whether your premium payment is sufficient to buy the kinds and amounts of coverage you requested, we will first deduct the costs of all applicable fees and surcharges.", + "text": "For the purpose of determining whether your premium payment is sufficient to buy the kinds and amounts of coverage you requested, we will first deduct the costs of all applicable fees and surcharges.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/375", + "parent": { + "$ref": "#/groups/38" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 346.5, + "t": 536.9201999999999, + "r": 571.4366040000008, + "b": 301.1565608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 366 + ] + } + ], + "orig": "b. If the amount paid, after deducting the costs of all applicable fees and surcharges, is not sufficient to buy any amount of coverage, your payment will be refunded. Unless the policy is reformed to increase the coverage amount to the amount originally requested pursuant to VII.D.3, this policy will be cancelled, and no claims will be paid under this policy.", + "text": "If the amount paid, after deducting the costs of all applicable fees and surcharges, is not sufficient to buy any amount of coverage, your payment will be refunded. Unless the policy is reformed to increase the coverage amount to the amount originally requested pursuant to VII.D.3, this policy will be cancelled, and no claims will be paid under this policy.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/376", + "parent": { + "$ref": "#/groups/38" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 346.5, + "t": 293.3202, + "r": 571.4561340000001, + "b": 177.5445608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 176 + ] + } + ], + "orig": "c. Coverage limits on the reformed policy will be based upon the amount of premium submitted per type of coverage, but will not exceed the amount originally requested.", + "text": " Coverage limits on the reformed policy will be based upon the amount of premium submitted per type of coverage, but will not exceed the amount originally requested.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/377", + "parent": { + "$ref": "#/groups/38" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 327.06, + "t": 166.84019999999998, + "r": 571.5611999999996, + "b": 51.06456080178168, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 180 + ] + } + ], + "orig": "3. Discovery of Insufficient Premium or Rating Information. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, the policy will", + "text": "Discovery of Insufficient Premium or Rating Information. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, the policy will", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/378", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/379", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 18, + "bbox": { + "l": 506.367, + "t": 36.13409999999999, + "r": 566.9973000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 16 OF 30", + "text": "PAGE 16 OF 30" + }, + { + "self_ref": "#/texts/380", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 76.5, + "t": 747.0002, + "r": 301.52880000000005, + "b": 631.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 172 + ] + } + ], + "orig": "be reformed as described in VII.D.2. You have the option of increasing the amount of coverage resulting from this reformation to the amount you requested as follows:", + "text": "be reformed as described in VII.D.2. You have the option of increasing the amount of coverage resulting from this reformation to the amount you requested as follows:" + }, + { + "self_ref": "#/texts/381", + "parent": { + "$ref": "#/groups/39" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 76.5, + "t": 620.5201999999999, + "r": 301.48108199999984, + "b": 244.73456080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 572 + ] + } + ], + "orig": "a. Insufficient Premium. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, we will send you, and any mortgagee or trustee known to us, a bill for the required additional premium for the current policy term (or that portion of the current policy term following any endorsement changing the amount of coverage). If it is discovered that the initial amount charged to you for any fees or surcharges is incorrect, the difference will be added or deducted, as applicable, to the total amount in this bill.", + "text": "Insufficient Premium. If we discover that your premium payment was not sufficient to buy the requested amount of coverage, we will send you, and any mortgagee or trustee known to us, a bill for the required additional premium for the current policy term (or that portion of the current policy term following any endorsement changing the amount of coverage). If it is discovered that the initial amount charged to you for any fees or surcharges is incorrect, the difference will be added or deducted, as applicable, to the total amount in this bill.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/382", + "parent": { + "$ref": "#/groups/39" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 90.9, + "t": 236.92020000000002, + "r": 296.812998, + "b": 61.13456080178173, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 243 + ] + } + ], + "orig": "(1) If you or the mortgagee or trustee pays the additional premium amount due within 30 days from the date of our bill, we will reform the policy to increase the amount of coverage to the originally requested amount, effective to the beginning", + "text": "If you or the mortgagee or trustee pays the additional premium amount due within 30 days from the date of our bill, we will reform the policy to increase the amount of coverage to the originally requested amount, effective to the beginning", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/383", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 382.5, + "t": 747.0002, + "r": 555.4063799999996, + "b": 671.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 99 + ] + } + ], + "orig": "of the current policy term (or subsequent date of any endorsement changing the amount of coverage).", + "text": "of the current policy term (or subsequent date of any endorsement changing the amount of coverage)." + }, + { + "self_ref": "#/texts/384", + "parent": { + "$ref": "#/groups/40" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 360.9, + "t": 662.5002, + "r": 561.0162779999998, + "b": 506.7145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 198 + ] + } + ], + "orig": "(2) If you or the mortgagee or trustee do not pay the additional amount due within 30 days of the date of our bill, any flood insurance claim will be settled based on the reduced amount of coverage.", + "text": "If you or the mortgagee or trustee do not pay the additional amount due within 30 days of the date of our bill, any flood insurance claim will be settled based on the reduced amount of coverage.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/385", + "parent": { + "$ref": "#/groups/40" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 360.9, + "t": 498.0002, + "r": 565.9365059999998, + "b": 382.2145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 155 + ] + } + ], + "orig": "(3) As applicable, you have the option of paying all or part of the amount due out of a claim payment based on the originally requested amount of coverage.", + "text": "As applicable, you have the option of paying all or part of the amount due out of a claim payment based on the originally requested amount of coverage.", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/386", + "parent": { + "$ref": "#/groups/40" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 346.5, + "t": 373.5002, + "r": 571.477518, + "b": 177.71456080178177, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 283 + ] + } + ], + "orig": "b. Insufficient Rating Inform\u00ad ation. If we determine that the rating information we have is insufficient and prevents us from calculating the additional premium, we will ask you to send the required information. You must submit the information within 60 days of our request.", + "text": "Insufficient Rating Inform\u00ad ation. If we determine that the rating information we have is insufficient and prevents us from calculating the additional premium, we will ask you to send the required information. You must submit the information within 60 days of our request.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/387", + "parent": { + "$ref": "#/groups/40" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 360.9, + "t": 169.90020000000004, + "r": 565.8544439999998, + "b": 74.11456080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 131 + ] + } + ], + "orig": "(1) If we receive the information within 60 days of our request, we will determine the amount of additional premium for the current", + "text": "If we receive the information within 60 days of our request, we will determine the amount of additional premium for the current", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/388", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000005, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/389", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 19, + "bbox": { + "l": 506.86199999999997, + "t": 36.13409999999999, + "r": 567.0927, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 17 OF 30", + "text": "PAGE 17 OF 30" + }, + { + "self_ref": "#/texts/390", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 112.5, + "t": 747.0002, + "r": 299.1299400000002, + "b": 711.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 57 + ] + } + ], + "orig": "policy term, and follow the procedure in VII.D.3.a above.", + "text": "policy term, and follow the procedure in VII.D.3.a above." + }, + { + "self_ref": "#/texts/391", + "parent": { + "$ref": "#/groups/41" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 90.9, + "t": 702.5002, + "r": 293.3681400000001, + "b": 466.7145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 300 + ] + } + ], + "orig": "(2) If we do not receive the information within 60 days of our request, no claims will be paid until the requested information is provided. Coverage will be limited to the amount of coverage that can be purchased for the payments we received, as determined when the requested information is provided.", + "text": "If we do not receive the information within 60 days of our request, no claims will be paid until the requested information is provided. Coverage will be limited to the amount of coverage that can be purchased for the payments we received, as determined when the requested information is provided.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/392", + "parent": { + "$ref": "#/groups/41" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 57.06, + "t": 458.0002, + "r": 301.5089999999999, + "b": 222.21456080178177, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 389 + ] + } + ], + "orig": "4. Coverage Increases. If we do not receive the amounts requested in VII.D.3.a or the additional information requested in VII.D.3.b by the date it is due, the amount of coverage under this policy can only be increased by endorsement subject to the appropriate waiting period. However, no coverage increases will be allowed until you have provided the information requested in VII.D.3.b.", + "text": "Coverage Increases. If we do not receive the amounts requested in VII.D.3.a or the additional information requested in VII.D.3.b by the date it is due, the amount of coverage under this policy can only be increased by endorsement subject to the appropriate waiting period. However, no coverage increases will be allowed until you have provided the information requested in VII.D.3.b.", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/393", + "parent": { + "$ref": "#/groups/41" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 57.06, + "t": 211.52020000000005, + "r": 301.5396000000001, + "b": 55.734560801781754, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 246 + ] + } + ], + "orig": "5. Falsifying Information. However, if we find that you or your agent intentionally did not tell us, or falsified any important fact or circumstance or did anything fraudulent relating to this insurance, the provisions of VIII.A apply.", + "text": "Falsifying Information. However, if we find that you or your agent intentionally did not tell us, or falsified any important fact or circumstance or did anything fraudulent relating to this insurance, the provisions of VIII.A apply.", + "enumerated": true, + "marker": "5." + }, + { + "self_ref": "#/texts/394", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 315.0, + "t": 747.0001, + "r": 394.20770850000025, + "b": 737.7760562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 17 + ] + } + ], + "orig": "E. Policy Renewal", + "text": "E. Policy Renewal", + "level": 1 + }, + { + "self_ref": "#/texts/395", + "parent": { + "$ref": "#/groups/42" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 328.5, + "t": 729.1571, + "r": 569.9875500000009, + "b": 707.4207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 76 + ] + } + ], + "orig": "1. This policy will expire at 12:01 a.m. on the last day of the policy term.", + "text": "This policy will expire at 12:01 a.m. on the last day of the policy term.", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/396", + "parent": { + "$ref": "#/groups/42" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 328.5, + "t": 698.6571, + "r": 569.9538900000003, + "b": 663.9207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 104 + ] + } + ], + "orig": "2. We must receive the payment of the appropriate renewal premium within 30 days of the expiration date.", + "text": "We must receive the payment of the appropriate renewal premium within 30 days of the expiration date.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/397", + "parent": { + "$ref": "#/groups/42" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 328.5, + "t": 655.1571, + "r": 569.9835900000008, + "b": 568.4207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 332 + ] + } + ], + "orig": "3. If we find, however, that we did not place your renewal notice into the U.S. Postal Service, or if we did mail it, we made a mistake, e.g., we used an incorrect, incomplete, or illegible address, which delayed its delivery to you before the due date for the renewal premium, then we will follow these procedures:", + "text": "If we find, however, that we did not place your renewal notice into the U.S. Postal Service, or if we did mail it, we made a mistake, e.g., we used an incorrect, incomplete, or illegible address, which delayed its delivery to you before the due date for the renewal premium, then we will follow these procedures:", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/398", + "parent": { + "$ref": "#/groups/42" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 346.5, + "t": 559.6571, + "r": 570.0051900000002, + "b": 446.92073238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 413 + ] + } + ], + "orig": "a. If you or your agent notified us, not later than one year after the date on which the payment of the renewal premium was due, of non-receipt of a renewal notice before the due date for the renewal premium, and we determine that the circumstances in the preceding paragraph apply, we will mail a second bill providing a revised due date, which will be 30 days after the date on which the bill is mailed.", + "text": "If you or your agent notified us, not later than one year after the date on which the payment of the renewal premium was due, of non-receipt of a renewal notice before the due date for the renewal premium, and we determine that the circumstances in the preceding paragraph apply, we will mail a second bill providing a revised due date, which will be 30 days after the date on which the bill is mailed.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/399", + "parent": { + "$ref": "#/groups/42" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 346.5, + "t": 439.0571, + "r": 569.9913300000002, + "b": 378.3207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 237 + ] + } + ], + "orig": "b. If we do not receive the premium requested in the second bill by the revised due date, then we will not renew the policy. In that case, the policy will remain an expired policy as of the expiration date shown on the Declarations Page.", + "text": "If we do not receive the premium requested in the second bill by the revised due date, then we will not renew the policy. In that case, the policy will remain an expired policy as of the expiration date shown on the Declarations Page.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/400", + "parent": { + "$ref": "#/groups/42" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 328.5, + "t": 370.4571, + "r": 570.0014100000011, + "b": 309.72073238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 255 + ] + } + ], + "orig": "4. In connection with the renewal of this policy, we may ask you during the policy term to recertify, on a Recertification Questionnaire we will provide to you, the rating information used to rate your most recent application for or renewal of insurance.", + "text": "In connection with the renewal of this policy, we may ask you during the policy term to recertify, on a Recertification Questionnaire we will provide to you, the rating information used to rate your most recent application for or renewal of insurance.", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/401", + "parent": { + "$ref": "#/groups/42" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 315.0, + "t": 292.3001, + "r": 537.4736775000001, + "b": 283.07605622895625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 50 + ] + } + ], + "orig": "F. Conditions Suspending or Restricting Insurance", + "text": " Conditions Suspending or Restricting Insurance", + "enumerated": true, + "marker": "F." + }, + { + "self_ref": "#/texts/402", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 315.0, + "t": 272.9451, + "r": 571.4999999999994, + "b": 197.15946080178173, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 127 + ] + } + ], + "orig": "We are not liable for loss that occurs while there is a hazard that is increased by any means within your control or knowledge.", + "text": "We are not liable for loss that occurs while there is a hazard that is increased by any means within your control or knowledge." + }, + { + "self_ref": "#/texts/403", + "parent": { + "$ref": "#/groups/43" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 315.0, + "t": 182.20010000000002, + "r": 460.56938849999943, + "b": 172.97605622895617, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 31 + ] + } + ], + "orig": "G. Requirements in Case of Loss", + "text": "Requirements in Case of Loss", + "enumerated": true, + "marker": "G." + }, + { + "self_ref": "#/texts/404", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 315.0, + "t": 162.8451, + "r": 571.5359999999998, + "b": 127.05946080178171, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 61 + ] + } + ], + "orig": "In case of a flood loss to insured property, you must:", + "text": "In case of a flood loss to insured property, you must:" + }, + { + "self_ref": "#/texts/405", + "parent": { + "$ref": "#/groups/44" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 327.06, + "t": 119.24509999999998, + "r": 566.9999999999995, + "b": 103.45946080178169, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "1. Give prompt written notice to us.", + "text": "Give prompt written notice to us.", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/406", + "parent": { + "$ref": "#/groups/44" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 327.06, + "t": 92.76509999999996, + "r": 571.5215999999998, + "b": 56.979460801781784, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 59 + ] + } + ], + "orig": "2. As soon as reasonably possible, separate the damaged and", + "text": "As soon as reasonably possible, separate the damaged and", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/407", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.23630000000006, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/408", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 20, + "bbox": { + "l": 506.142, + "t": 36.13409999999999, + "r": 567.0009000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 18 OF 30", + "text": "PAGE 18 OF 30" + }, + { + "self_ref": "#/texts/409", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 76.5, + "t": 747.0002, + "r": 301.51259999999996, + "b": 691.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 90 + ] + } + ], + "orig": "undamaged property, putting it in the best possible order so that we may examine it.", + "text": "undamaged property, putting it in the best possible order so that we may examine it." + }, + { + "self_ref": "#/texts/410", + "parent": { + "$ref": "#/groups/45" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 57.06, + "t": 680.5201999999999, + "r": 301.53959999999995, + "b": 584.7345608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 174 + ] + } + ], + "orig": "3. Prepare an inventory of damaged property showing the quantity, description, actual cash value, and amount of loss. Attach all bills, receipts, and related documents.", + "text": " Prepare an inventory of damaged property showing the quantity, description, actual cash value, and amount of loss. Attach all bills, receipts, and related documents.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/411", + "parent": { + "$ref": "#/groups/45" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 57.06, + "t": 574.0401999999999, + "r": 301.50720000000007, + "b": 438.25456080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 226 + ] + } + ], + "orig": "4. Within 60 days after the loss, send us a proof of loss, which is your statement of the amount you are claiming under the policy signed and sworn to by you, and which furnishes us with the following information:", + "text": "Within 60 days after the loss, send us a proof of loss, which is your statement of the amount you are claiming under the policy signed and sworn to by you, and which furnishes us with the following information:", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/412", + "parent": { + "$ref": "#/groups/45" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 76.5, + "t": 427.5602, + "r": 261.701496, + "b": 411.7745608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 29 + ] + } + ], + "orig": "a. The date and time of loss;", + "text": "The date and time of loss;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/413", + "parent": { + "$ref": "#/groups/45" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 76.5, + "t": 403.9602, + "r": 290.93342399999995, + "b": 368.1745608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 48 + ] + } + ], + "orig": "b. A brief explanation of how the loss happened;", + "text": "A brief explanation of how the loss happened;", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/414", + "parent": { + "$ref": "#/groups/45" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 76.5, + "t": 360.3602, + "r": 279.69689999999997, + "b": 284.57456080178173, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 101 + ] + } + ], + "orig": "c. Your interest (for example, 'owner') and the interest, if any, of others in the damaged property;", + "text": " Your interest (for example, 'owner') and the interest, if any, of others in the damaged property;", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/415", + "parent": { + "$ref": "#/groups/45" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 76.5, + "t": 276.76019999999994, + "r": 290.64830399999994, + "b": 240.97456080178176, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 58 + ] + } + ], + "orig": "d. Details of any other insurance that may cover the loss;", + "text": "Details of any other insurance that may cover the loss;", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/416", + "parent": { + "$ref": "#/groups/45" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 76.5, + "t": 233.16020000000003, + "r": 290.5146539999998, + "b": 177.37456080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 87 + ] + } + ], + "orig": "e. Changes in title or occupancy of the insured property during the term of the policy;", + "text": "Changes in title or occupancy of the insured property during the term of the policy;", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/417", + "parent": { + "$ref": "#/groups/45" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 76.5, + "t": 169.5602, + "r": 275.03263799999996, + "b": 113.77456080178172, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 70 + ] + } + ], + "orig": "f. Specifications of damaged buildings and detailed repair estimates;", + "text": " Specifications of damaged buildings and detailed repair estimates;", + "enumerated": true, + "marker": "f." + }, + { + "self_ref": "#/texts/418", + "parent": { + "$ref": "#/groups/45" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 76.5, + "t": 105.96019999999999, + "r": 264.180258, + "b": 70.1745608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 52 + ] + } + ], + "orig": "g. Names of mortgagees or anyone else having a lien,", + "text": "Names of mortgagees or anyone else having a lien,", + "enumerated": true, + "marker": "g." + }, + { + "self_ref": "#/texts/419", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 364.5, + "t": 747.0002, + "r": 548.1653939999998, + "b": 711.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 46 + ] + } + ], + "orig": "charge, or claim against the insured property;", + "text": "charge, or claim against the insured property;" + }, + { + "self_ref": "#/texts/420", + "parent": { + "$ref": "#/groups/46" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 346.5, + "t": 703.4001999999999, + "r": 552.372696, + "b": 627.5797590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 96 + ] + } + ], + "orig": "h. Details about who occupied any insured building at the time of loss and for what purpose; and", + "text": "Details about who occupied any insured building at the time of loss and for what purpose; and", + "enumerated": true, + "marker": "h." + }, + { + "self_ref": "#/texts/421", + "parent": { + "$ref": "#/groups/46" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 346.5, + "t": 619.8001999999999, + "r": 566.4469320000009, + "b": 564.0145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 70 + ] + } + ], + "orig": "i. The inventory of damaged personal property described in G.3 above.", + "text": " The inventory of damaged personal property described in G.3 above.", + "enumerated": true, + "marker": "i." + }, + { + "self_ref": "#/texts/422", + "parent": { + "$ref": "#/groups/46" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 327.06, + "t": 556.2002, + "r": 571.5035999999996, + "b": 480.4145608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 125 + ] + } + ], + "orig": "5. In completing the proof of loss, you must use your own judgment concerning the amount of loss and justify that amount.", + "text": "In completing the proof of loss, you must use your own judgment concerning the amount of loss and justify that amount.", + "enumerated": true, + "marker": "5." + }, + { + "self_ref": "#/texts/423", + "parent": { + "$ref": "#/groups/46" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 327.06, + "t": 469.72020000000003, + "r": 571.5053999999997, + "b": 413.93456080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 96 + ] + } + ], + "orig": "6. You must cooperate with the adjuster or representative in the investigation of the claim.", + "text": "You must cooperate with the adjuster or representative in the investigation of the claim.", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/424", + "parent": { + "$ref": "#/groups/46" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 328.5, + "t": 404.7522, + "r": 569.9934900000009, + "b": 318.01583238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 354 + ] + } + ], + "orig": "7. The insurance adjuster whom we hire to investigate your claim may furnish you with a proof of loss form, and she or he may help you complete it. However, this is a matter of courtesy only, and you must still send us a proof of loss within 60 days after the loss even if the adjuster does not furnish the form or help you complete it.", + "text": "The insurance adjuster whom we hire to investigate your claim may furnish you with a proof of loss form, and she or he may help you complete it. However, this is a matter of courtesy only, and you must still send us a proof of loss within 60 days after the loss even if the adjuster does not furnish the form or help you complete it.", + "enumerated": true, + "marker": "7." + }, + { + "self_ref": "#/texts/425", + "parent": { + "$ref": "#/groups/46" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 328.5, + "t": 309.2522, + "r": 569.9657700000006, + "b": 274.51583238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 127 + ] + } + ], + "orig": "8. We have not authorized the adjuster to approve or disapprove claims or to tell you whether we will approve your claim.", + "text": "We have not authorized the adjuster to approve or disapprove claims or to tell you whether we will approve your claim.", + "enumerated": true, + "marker": "8." + }, + { + "self_ref": "#/texts/426", + "parent": { + "$ref": "#/groups/46" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 328.5, + "t": 265.7522, + "r": 569.9875500000004, + "b": 192.01583238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 306 + ] + } + ], + "orig": "9. At our option, we may accept the adjuster's report of the loss instead of your proof of loss. The adjuster's report will include information about your loss and the damages you sustained. You must sign the adjuster's report. At our option, we may require you to swear to the report.", + "text": "At our option, we may accept the adjuster's report of the loss instead of your proof of loss. The adjuster's report will include information about your loss and the damages you sustained. You must sign the adjuster's report. At our option, we may require you to swear to the report.", + "enumerated": true, + "marker": "9." + }, + { + "self_ref": "#/texts/427", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 315.0, + "t": 174.59519999999998, + "r": 436.13282249999946, + "b": 165.37115622895624, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 27 + ] + } + ], + "orig": "H. Our Options After a Loss", + "text": "H. Our Options After a Loss" + }, + { + "self_ref": "#/texts/428", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 315.0, + "t": 155.24019999999996, + "r": 571.4874000000001, + "b": 119.45456080178178, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 82 + ] + } + ], + "orig": "Options we may, in our sole discretion, exercise after loss include the following:", + "text": "Options we may, in our sole discretion, exercise after loss include the following:" + }, + { + "self_ref": "#/texts/429", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000005, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/430", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 21, + "bbox": { + "l": 506.34000000000003, + "t": 36.13409999999999, + "r": 567.0909000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 19 OF 30", + "text": "PAGE 19 OF 30" + }, + { + "self_ref": "#/texts/431", + "parent": { + "$ref": "#/groups/47" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 57.06, + "t": 747.0002, + "r": 301.5162, + "b": 691.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 79 + ] + } + ], + "orig": "1. At such reasonable times and places that we may designate, you must:", + "text": "At such reasonable times and places that we may designate, you must:", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/432", + "parent": { + "$ref": "#/groups/47" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 76.5, + "t": 680.5201999999999, + "r": 290.712456, + "b": 644.7345608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "a. Show us or our representative the damaged property;", + "text": "Show us or our representative the damaged property;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/433", + "parent": { + "$ref": "#/groups/47" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 76.5, + "t": 636.9201999999999, + "r": 301.45613399999996, + "b": 561.099759055118, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 108 + ] + } + ], + "orig": "b. Submit to examination under oath, while not in the presence of another insured, and sign the same; and", + "text": "Submit to examination under oath, while not in the presence of another insured, and sign the same; and", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/434", + "parent": { + "$ref": "#/groups/47" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 76.5, + "t": 553.3202, + "r": 281.0165939999998, + "b": 517.5345608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 57 + ] + } + ], + "orig": "c. Permit us to examine and make extracts and copies of:", + "text": " Permit us to examine and make extracts and copies of:", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/435", + "parent": { + "$ref": "#/groups/47" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 90.9, + "t": 509.72020000000003, + "r": 293.1600599999999, + "b": 413.93456080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 135 + ] + } + ], + "orig": "(1) Any policies of property insurance insuring you against loss and the deed establishing your ownership of the insured real property;", + "text": "Any policies of property insurance insuring you against loss and the deed establishing your ownership of the insured real property;", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/436", + "parent": { + "$ref": "#/groups/47" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 90.9, + "t": 405.22020000000003, + "r": 300.35894399999995, + "b": 209.39975905511812, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 245 + ] + } + ], + "orig": "(2) Condominium association documents including the Declarations of the condominium, its Articles of Association or Incorporation, Bylaws, rules and regulations, and other relevant documents if you are a unit owner in a condominium building; and", + "text": "Condominium association documents including the Declarations of the condominium, its Articles of Association or Incorporation, Bylaws, rules and regulations, and other relevant documents if you are a unit owner in a condominium building; and", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/437", + "parent": { + "$ref": "#/groups/47" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 90.9, + "t": 200.72019999999998, + "r": 300.932244, + "b": 104.9345608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 144 + ] + } + ], + "orig": "(3) All books of accounts, bills, invoices and other vouchers, or certified copies pertaining to the damaged property if the originals are lost.", + "text": "All books of accounts, bills, invoices and other vouchers, or certified copies pertaining to the damaged property if the originals are lost.", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/438", + "parent": { + "$ref": "#/groups/47" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 57.06, + "t": 96.22019999999998, + "r": 301.52880000000005, + "b": 60.434560801781686, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 71 + ] + } + ], + "orig": "2. We may request, in writing, that you furnish us with a complete", + "text": "We may request, in writing, that you furnish us with a complete", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/439", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 346.5, + "t": 747.0002, + "r": 571.5269999999997, + "b": 711.2145608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 64 + ] + } + ], + "orig": "inventory of the lost, damaged or destroyed property, including:", + "text": "inventory of the lost, damaged or destroyed property, including:" + }, + { + "self_ref": "#/texts/440", + "parent": { + "$ref": "#/groups/48" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 346.5, + "t": 700.5201999999999, + "r": 501.1170300000002, + "b": 684.7345608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 24 + ] + } + ], + "orig": "a. Quantities and costs;", + "text": "Quantities and costs;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/441", + "parent": { + "$ref": "#/groups/48" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 346.5, + "t": 676.9201999999999, + "r": 562.2752699999996, + "b": 621.1345608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 69 + ] + } + ], + "orig": "b. Actual cash values or replacement cost (whichever is appropriate);", + "text": "Actual cash values or replacement cost (whichever is appropriate);", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/442", + "parent": { + "$ref": "#/groups/48" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 346.5, + "t": 613.3202, + "r": 526.7707019999997, + "b": 597.5345608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 28 + ] + } + ], + "orig": "c. Amounts of loss claimed;", + "text": " Amounts of loss claimed;", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/443", + "parent": { + "$ref": "#/groups/48" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 346.5, + "t": 589.7202, + "r": 566.705322, + "b": 493.8997590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 124 + ] + } + ], + "orig": "d. Any written plans and specifications for repair of the damaged property that you can reasonably make available to us; and", + "text": "Any written plans and specifications for repair of the damaged property that you can reasonably make available to us; and", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/444", + "parent": { + "$ref": "#/groups/48" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 346.5, + "t": 486.1202, + "r": 540.8859239999996, + "b": 450.3345608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "e. Evidence that prior flood damage has been repaired.", + "text": "Evidence that prior flood damage has been repaired.", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/445", + "parent": { + "$ref": "#/groups/48" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 327.06, + "t": 442.5202, + "r": 571.5359999999994, + "b": 366.7345608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 111 + ] + } + ], + "orig": "3. If we give you written notice within 30 days after we receive your signed, sworn proof of loss, we may:", + "text": "If we give you written notice within 30 days after we receive your signed, sworn proof of loss, we may:", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/446", + "parent": { + "$ref": "#/groups/48" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 346.5, + "t": 356.0402, + "r": 571.4721720000005, + "b": 240.21975905511817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 174 + ] + } + ], + "orig": "a. Repair, rebuild, or replace any part of the lost, damaged, or destroyed property with material or property of like kind and quality or its functional equivalent; and", + "text": "Repair, rebuild, or replace any part of the lost, damaged, or destroyed property with material or property of like kind and quality or its functional equivalent; and", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/447", + "parent": { + "$ref": "#/groups/48" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 346.5, + "t": 232.4402, + "r": 571.4775180000003, + "b": 156.6545608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 106 + ] + } + ], + "orig": "b. Take all or any part of the damaged property at the value that we agree upon or its appraised value.", + "text": "Take all or any part of the damaged property at the value that we agree upon or its appraised value.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/448", + "parent": { + "$ref": "#/groups/48" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 315.0, + "t": 141.6952, + "r": 416.4873120000003, + "b": 132.47115622895626, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 24 + ] + } + ], + "orig": "I. No Benefit to Bailee", + "text": " No Benefit to Bailee", + "enumerated": true, + "marker": "I." + }, + { + "self_ref": "#/texts/449", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 315.0, + "t": 122.34019999999998, + "r": 571.5377999999998, + "b": 66.55456080178169, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 111 + ] + } + ], + "orig": "No person or organization, other than you, having custody of insured property will benefit from this insurance.", + "text": "No person or organization, other than you, having custody of insured property will benefit from this insurance." + }, + { + "self_ref": "#/texts/450", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.23630000000006, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/451", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 22, + "bbox": { + "l": 506.295, + "t": 36.13409999999999, + "r": 566.9991000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 20 OF 30", + "text": "PAGE 20 OF 30" + }, + { + "self_ref": "#/texts/452", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 45.0, + "t": 747.0001, + "r": 119.72135099999997, + "b": 737.7760562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 16 + ] + } + ], + "orig": "J. Loss Payment", + "text": "J. Loss Payment", + "level": 1 + }, + { + "self_ref": "#/texts/453", + "parent": { + "$ref": "#/groups/49" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 58.5, + "t": 729.1571, + "r": 299.99646, + "b": 642.4207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 362 + ] + } + ], + "orig": "1. We will adjust all losses with you. We will pay you unless some other person or entity is named in the policy or is legally entitled to receive payment. Loss will be payable 60 days after we receive your proof of loss (or within 90 days after the insurance adjuster files the adjuster's report signed and sworn to by you in lieu of a proof of loss) and:", + "text": "We will adjust all losses with you. We will pay you unless some other person or entity is named in the policy or is legally entitled to receive payment. Loss will be payable 60 days after we receive your proof of loss (or within 90 days after the insurance adjuster files the adjuster's report signed and sworn to by you in lieu of a proof of loss) and:", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/454", + "parent": { + "$ref": "#/groups/49" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 76.5, + "t": 634.5571, + "r": 238.19553000000013, + "b": 625.8207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "a. We reach an agreement with you;", + "text": "We reach an agreement with you;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/455", + "parent": { + "$ref": "#/groups/49" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 76.5, + "t": 617.9571, + "r": 264.7245600000002, + "b": 609.1614340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 44 + ] + } + ], + "orig": "b. There is an entry of a final judgment; or", + "text": "There is an entry of a final judgment; or", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/456", + "parent": { + "$ref": "#/groups/49" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 76.5, + "t": 601.3571000000001, + "r": 299.98341000000005, + "b": 579.6207323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 73 + ] + } + ], + "orig": "c. There is a filing of an appraisal award with us, as provided in VII.M.", + "text": "There is a filing of an appraisal award with us, as provided in VII.M.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/457", + "parent": { + "$ref": "#/groups/49" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 58.5, + "t": 570.8571000000001, + "r": 299.9806199999998, + "b": 549.1207323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 63 + ] + } + ], + "orig": "2. If we reject your proof of loss in whole or in part you may:", + "text": "If we reject your proof of loss in whole or in part you may:", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/458", + "parent": { + "$ref": "#/groups/49" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 76.5, + "t": 540.3571000000001, + "r": 229.3746300000001, + "b": 531.6207323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "a. Accept our denial of your claim;", + "text": "Accept our denial of your claim;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/459", + "parent": { + "$ref": "#/groups/49" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 76.5, + "t": 523.7571, + "r": 266.2778700000002, + "b": 514.9614340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 45 + ] + } + ], + "orig": "b. Exercise your rights under this policy; or", + "text": "Exercise your rights under this policy; or", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/460", + "parent": { + "$ref": "#/groups/49" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 76.5, + "t": 507.1571, + "r": 299.9368800000002, + "b": 485.42073238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 95 + ] + } + ], + "orig": "c. File an amended proof of loss as long as it is filed within 60 days of the date of the loss.", + "text": "File an amended proof of loss as long as it is filed within 60 days of the date of the loss.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/461", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 45.0, + "t": 472.5001, + "r": 120.02372100000002, + "b": 463.27605622895624, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "K. Abandonment", + "text": "K. Abandonment", + "level": 1 + }, + { + "self_ref": "#/texts/462", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 45.0, + "t": 454.6571, + "r": 299.95074000000005, + "b": 432.92073238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 90 + ] + } + ], + "orig": "You may not abandon to us damaged or undamaged property insured under this policy.", + "text": "You may not abandon to us damaged or undamaged property insured under this policy." + }, + { + "self_ref": "#/texts/463", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 45.0, + "t": 420.90009999999995, + "r": 92.115225, + "b": 411.6760562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 10 + ] + } + ], + "orig": "L. Salvage", + "text": "L. Salvage", + "level": 1 + }, + { + "self_ref": "#/texts/464", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 45.0, + "t": 403.0571, + "r": 300.00915000000015, + "b": 355.3207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 194 + ] + } + ], + "orig": "We may permit you to keep damaged property insured under this policy after a loss, and we will reduce the amount of the loss proceeds payable to you under the policy by the value of the salvage.", + "text": "We may permit you to keep damaged property insured under this policy after a loss, and we will reduce the amount of the loss proceeds payable to you under the policy by the value of the salvage." + }, + { + "self_ref": "#/texts/465", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 45.0, + "t": 343.3001, + "r": 99.90694349999998, + "b": 334.07605622895625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "M. Appraisal", + "text": "M. Appraisal", + "level": 1 + }, + { + "self_ref": "#/texts/466", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 45.0, + "t": 325.4571, + "r": 300.01311000000015, + "b": 95.7207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1038 + ] + } + ], + "orig": "If you and we fail to agree on the actual cash value or, if applicable, replacement cost of your damaged property to settle upon the amount of loss, then either may demand an appraisal of the loss. In this event, you and we will each choose a competent and impartial appraiser within 20 days after receiving a written request from the other. The two appraisers will choose an umpire. If they cannot agree upon an umpire within 15 days, you or we may request that the choice be made by a judge of a court of record in the state where the insured property is located. The appraisers will separately state the actual cash value, the replacement cost, and the amount of loss to each item. If the appraisers submit a written report of an agreement to us, the amount agreed upon will be the amount of loss. If they fail to agree, they will submit their differences to the umpire. A decision agreed to by any two will set the amount of actual cash value and loss, or if it applies, the replacement cost and loss.", + "text": "If you and we fail to agree on the actual cash value or, if applicable, replacement cost of your damaged property to settle upon the amount of loss, then either may demand an appraisal of the loss. In this event, you and we will each choose a competent and impartial appraiser within 20 days after receiving a written request from the other. The two appraisers will choose an umpire. If they cannot agree upon an umpire within 15 days, you or we may request that the choice be made by a judge of a court of record in the state where the insured property is located. The appraisers will separately state the actual cash value, the replacement cost, and the amount of loss to each item. If the appraisers submit a written report of an agreement to us, the amount agreed upon will be the amount of loss. If they fail to agree, they will submit their differences to the umpire. A decision agreed to by any two will set the amount of actual cash value and loss, or if it applies, the replacement cost and loss." + }, + { + "self_ref": "#/texts/467", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 45.0, + "t": 83.35710000000006, + "r": 109.9341000000001, + "b": 74.62073238512039, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 16 + ] + } + ], + "orig": "Each party will:", + "text": "Each party will:", + "level": 1 + }, + { + "self_ref": "#/texts/468", + "parent": { + "$ref": "#/groups/50" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 58.5, + "t": 66.75710000000004, + "r": 192.7646099999999, + "b": 57.96143408577882, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 29 + ] + } + ], + "orig": "1. Pay its own appraiser; and", + "text": "Pay its own appraiser; and", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/469", + "parent": { + "$ref": "#/groups/50" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 328.5, + "t": 747.0001, + "r": 569.9796300000006, + "b": 725.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 70 + ] + } + ], + "orig": "2. Bear the other expenses of the appraisal and umpire equally.", + "text": "Bear the other expenses of the appraisal and umpire equally.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/470", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 315.0, + "t": 712.3430999999999, + "r": 402.4718579999999, + "b": 703.1190562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 18 + ] + } + ], + "orig": "N. Mortgage Clause", + "text": "N. Mortgage Clause", + "level": 1 + }, + { + "self_ref": "#/texts/471", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 327.06, + "t": 692.9880999999999, + "r": 559.7964, + "b": 657.2044608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 41 + ] + } + ], + "orig": "1. The word 'mortgagee' includes trustee.", + "text": "1. The word 'mortgagee' includes trustee.", + "level": 1 + }, + { + "self_ref": "#/texts/472", + "parent": { + "$ref": "#/groups/51" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 327.06, + "t": 646.5081, + "r": 571.5233999999999, + "b": 410.74446080178154, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 385 + ] + } + ], + "orig": "2. Any loss payable under Coverage A-Building Property will be paid to any mortgagee of whom we have actual notice, as well as any other mortgagee or loss payee determined to exist at the time of loss, and you, as interests appear. If more than one mortgagee is named, the order of payment will be the same as the order of precedence of the mortgages.", + "text": "Any loss payable under Coverage A-Building Property will be paid to any mortgagee of whom we have actual notice, as well as any other mortgagee or loss payee determined to exist at the time of loss, and you, as interests appear. If more than one mortgagee is named, the order of payment will be the same as the order of precedence of the mortgages.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/473", + "parent": { + "$ref": "#/groups/51" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 327.06, + "t": 400.0281, + "r": 571.5539999999995, + "b": 344.2464608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 105 + ] + } + ], + "orig": "3. If we deny your claim, that denial will not apply to a valid claim of the mortgagee, if the mortgagee:", + "text": "If we deny your claim, that denial will not apply to a valid claim of the mortgagee, if the mortgagee:", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/474", + "parent": { + "$ref": "#/groups/51" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 346.5, + "t": 333.54810000000003, + "r": 571.4525700000002, + "b": 257.76846080178177, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 130 + ] + } + ], + "orig": "a. Notifies us of any change in the ownership or occupancy, or substantial change in risk of which the mortgagee is aware;", + "text": "Notifies us of any change in the ownership or occupancy, or substantial change in risk of which the mortgagee is aware;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/475", + "parent": { + "$ref": "#/groups/51" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 346.5, + "t": 249.94810000000007, + "r": 571.4561340000001, + "b": 174.1336590551182, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 106 + ] + } + ], + "orig": "b. Pays any premium due under this policy on demand if you have neglected to pay the premium; and", + "text": "Pays any premium due under this policy on demand if you have neglected to pay the premium; and", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/476", + "parent": { + "$ref": "#/groups/51" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 346.5, + "t": 166.34810000000004, + "r": 571.4775180000001, + "b": 90.56846080178173, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 118 + ] + } + ], + "orig": "c. Submits a signed, sworn proof of loss within 60 days after receiving notice from us of your failure to do so.", + "text": " Submits a signed, sworn proof of loss within 60 days after receiving notice from us of your failure to do so.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/477", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/478", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 23, + "bbox": { + "l": 506.484, + "t": 36.13409999999999, + "r": 567.0846000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 21 OF 30", + "text": "PAGE 21 OF 30" + }, + { + "self_ref": "#/texts/479", + "parent": { + "$ref": "#/groups/52" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 57.06, + "t": 747.0002, + "r": 301.4586000000001, + "b": 711.2165608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 64 + ] + } + ], + "orig": "4. All of the terms of this policy apply to the mortgagee.", + "text": "All of the terms of this policy apply to the mortgagee.", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/480", + "parent": { + "$ref": "#/groups/52" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 57.06, + "t": 700.5201999999999, + "r": 301.51259999999996, + "b": 604.7425608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 146 + ] + } + ], + "orig": "5. The mortgagee has the right to receive loss payment even if the mortgagee has started foreclosure or similar action on the building.", + "text": "The mortgagee has the right to receive loss payment even if the mortgagee has started foreclosure or similar action on the building.", + "enumerated": true, + "marker": "5." + }, + { + "self_ref": "#/texts/481", + "parent": { + "$ref": "#/groups/52" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 57.06, + "t": 594.0401999999999, + "r": 301.52880000000005, + "b": 478.26456080178156, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 210 + ] + } + ], + "orig": "6. If we decide to cancel or not renew this policy, it will continue in effect for the benefit of the mortgagee only for 30 days after we notify the mortgagee of the cancellation or non-renewal.", + "text": "If we decide to cancel or not renew this policy, it will continue in effect for the benefit of the mortgagee only for 30 days after we notify the mortgagee of the cancellation or non-renewal.", + "enumerated": true, + "marker": "6." + }, + { + "self_ref": "#/texts/482", + "parent": { + "$ref": "#/groups/52" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 57.06, + "t": 467.5602, + "r": 301.5360000000002, + "b": 291.7905608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 283 + ] + } + ], + "orig": "7. If we pay the mortgagee for any loss and deny payment to you, we are subrogated to all the rights of the mortgagee granted under the mortgage on the property. Subrogation will not impair the right of the mortgagee to recover the full amount of the mortgagee's claim.", + "text": " If we pay the mortgagee for any loss and deny payment to you, we are subrogated to all the rights of the mortgagee granted under the mortgage on the property. Subrogation will not impair the right of the mortgagee to recover the full amount of the mortgagee's claim.", + "enumerated": true, + "marker": "7." + }, + { + "self_ref": "#/texts/483", + "parent": { + "$ref": "#/groups/52" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 45.0, + "t": 278.4351999999999, + "r": 124.9499115, + "b": 269.21115622895627, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 18 + ] + } + ], + "orig": "O. Suit Against Us", + "text": "Suit Against Us", + "enumerated": true, + "marker": "O." + }, + { + "self_ref": "#/texts/484", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 45.0, + "t": 259.0802, + "r": 301.5521999999998, + "b": 63.31256080178173, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 406 + ] + }, + { + "page_no": 24, + "bbox": { + "l": 315.0, + "t": 747.0242, + "r": 571.5449999999998, + "b": 651.2465608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 407, + 571 + ] + } + ], + "orig": "You may not sue us to recover money under this policy unless you have complied with all the requirements of the policy. If you do sue, you must start the suit within one year after the date of the written denial of all or part of the claim, and you must file the suit in the United States District Court of the district in which the insured property was located at the time of loss. This requirement applies to any claim that you may have under this policy and to any dispute that you may have arising out of the handling of any claim under the policy.", + "text": "You may not sue us to recover money under this policy unless you have complied with all the requirements of the policy. If you do sue, you must start the suit within one year after the date of the written denial of all or part of the claim, and you must file the suit in the United States District Court of the district in which the insured property was located at the time of loss. This requirement applies to any claim that you may have under this policy and to any dispute that you may have arising out of the handling of any claim under the policy." + }, + { + "self_ref": "#/texts/485", + "parent": { + "$ref": "#/groups/53" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 315.0, + "t": 640.7552, + "r": 380.90106899999984, + "b": 631.5311562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 15 + ] + } + ], + "orig": "P. Subrogation", + "text": " Subrogation", + "enumerated": true, + "marker": "P." + }, + { + "self_ref": "#/texts/486", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 315.0, + "t": 622.9122, + "r": 569.9863800000005, + "b": 549.1758323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 354 + ] + } + ], + "orig": "Whenever we make a payment for a loss under this policy, we are subrogated to your right to recover for that loss from any other person. That means that your right to recover for a loss that was partly or totally caused by someone else is automatically transferred to us, to the extent that we have paid you for the loss. We may require", + "text": "Whenever we make a payment for a loss under this policy, we are subrogated to your right to recover for that loss from any other person. That means that your right to recover for a loss that was partly or totally caused by someone else is automatically transferred to us, to the extent that we have paid you for the loss. We may require" + }, + { + "self_ref": "#/texts/487", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 314.9935, + "t": 543.4001999999999, + "r": 571.5403000000002, + "b": 387.62856080178176, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 326 + ] + } + ], + "orig": "you to acknowledge this transfer in writing. After the loss, you may not give up our right to recover this money or do anything that would prevent us from recovering it. If you make any claim against any person who caused your loss and recover any money, you must pay us back first before you may keep any of that money.", + "text": "you to acknowledge this transfer in writing. After the loss, you may not give up our right to recover this money or do anything that would prevent us from recovering it. If you make any claim against any person who caused your loss and recover any money, you must pay us back first before you may keep any of that money." + }, + { + "self_ref": "#/texts/488", + "parent": { + "$ref": "#/groups/54" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 315.0, + "t": 377.1552, + "r": 442.1348955000001, + "b": 367.93115622895624, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 27 + ] + } + ], + "orig": "Q. Continuous Lake Flooding", + "text": "Continuous Lake Flooding", + "enumerated": true, + "marker": "Q." + }, + { + "self_ref": "#/texts/489", + "parent": { + "$ref": "#/groups/54" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 327.06, + "t": 357.8002, + "r": 571.5305999999996, + "b": 82.0405608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 468 + ] + } + ], + "orig": "1. If an insured building has been flooded by rising lake waters continuously for 90 days or more and it appears reasonably certain that a continuation of this flooding will result in an insured loss to the insured building equal to or greater than the building policy limits plus the deductible or the maximum payable under the policy for any one building loss, we will pay you the lesser of these two amounts without waiting for the further", + "text": "If an insured building has been flooded by rising lake waters continuously for 90 days or more and it appears reasonably certain that a continuation of this flooding will result in an insured loss to the insured building equal to or greater than the building policy limits plus the deductible or the maximum payable under the policy for any one building loss, we will pay you the lesser of these two amounts without waiting for the further", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/490", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/491", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 24, + "bbox": { + "l": 506.277, + "t": 36.13409999999999, + "r": 567.0009000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 22 OF 30", + "text": "PAGE 22 OF 30" + }, + { + "self_ref": "#/texts/492", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 76.5, + "t": 747.0002, + "r": 301.46040000000016, + "b": 711.2165608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 53 + ] + } + ], + "orig": "damage to occur if you sign a release agreeing:", + "text": "damage to occur if you sign a release agreeing:" + }, + { + "self_ref": "#/texts/493", + "parent": { + "$ref": "#/groups/55" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 76.5, + "t": 700.5201999999999, + "r": 266.8211820000001, + "b": 664.7365608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 46 + ] + } + ], + "orig": "a. To make no further claim under this policy;", + "text": "To make no further claim under this policy;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/494", + "parent": { + "$ref": "#/groups/55" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 76.5, + "t": 656.9201999999999, + "r": 255.80664000000002, + "b": 621.1365608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 38 + ] + } + ], + "orig": "b. Not to seek renewal of this policy;", + "text": "Not to seek renewal of this policy;", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/495", + "parent": { + "$ref": "#/groups/55" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 76.5, + "t": 613.3202, + "r": 271.0177920000001, + "b": 537.5405608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 94 + ] + } + ], + "orig": "c. Not to apply for any flood insurance under the Act for property at the described location;", + "text": " Not to apply for any flood insurance under the Act for property at the described location;", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/496", + "parent": { + "$ref": "#/groups/55" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 76.5, + "t": 529.7202, + "r": 291.8814479999999, + "b": 493.93656080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 59 + ] + } + ], + "orig": "d. Not to seek a premium refund for current or prior terms.", + "text": "Not to seek a premium refund for current or prior terms.", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/497", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 76.5018, + "t": 483.24420000000003, + "r": 301.48999199999986, + "b": 347.4705608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 238 + ] + } + ], + "orig": "If the policy term ends before the insured building has been flooded continuously for 90 days, the provisions of this paragraph Q.1 will apply when the insured building suffers a covered loss before the policy term ends.", + "text": "If the policy term ends before the insured building has been flooded continuously for 90 days, the provisions of this paragraph Q.1 will apply when the insured building suffers a covered loss before the policy term ends." + }, + { + "self_ref": "#/texts/498", + "parent": { + "$ref": "#/groups/56" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 57.06, + "t": 338.7402, + "r": 301.5378000000002, + "b": 62.98056080178185, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 468 + ] + } + ], + "orig": "2. If your insured building is subject to continuous lake flooding from a closed basin lake, you may elect to file a claim under either paragraph Q.1 above or Q.2 (A 'closed basin lake' is a natural lake from which water leaves primarily through evaporation and whose surface area now exceeds or has exceeded one square mile at any time in the recorded past. Most of the nation's closed basin lakes are in the western half of the United", + "text": "If your insured building is subject to continuous lake flooding from a closed basin lake, you may elect to file a claim under either paragraph Q.1 above or Q.2 (A 'closed basin lake' is a natural lake from which water leaves primarily through evaporation and whose surface area now exceeds or has exceeded one square mile at any time in the recorded past. Most of the nation's closed basin lakes are in the western half of the United", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/499", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 346.5, + "t": 747.0341999999999, + "r": 571.5359999999997, + "b": 471.2745608017812, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 445 + ] + } + ], + "orig": "States where annual evaporation exceeds annual precipitation and where lake levels and surface areas are subject to considerable fluctuation due to wide variations in the climate. These lakes may overtop their basins on rare occasions.) Under this paragraph Q.2, we will pay your claim as if the building is a total loss even though it has not been continuously inundated for 90 days, subject to the following conditions:", + "text": "States where annual evaporation exceeds annual precipitation and where lake levels and surface areas are subject to considerable fluctuation due to wide variations in the climate. These lakes may overtop their basins on rare occasions.) Under this paragraph Q.2, we will pay your claim as if the building is a total loss even though it has not been continuously inundated for 90 days, subject to the following conditions:" + }, + { + "self_ref": "#/texts/500", + "parent": { + "$ref": "#/groups/57" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 346.5, + "t": 460.5202, + "r": 570.6275039999997, + "b": 404.7385608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 79 + ] + } + ], + "orig": "a. Lake floodwaters must damage or imminently threaten to damage your building.", + "text": "Lake floodwaters must damage or imminently threaten to damage your building.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/501", + "parent": { + "$ref": "#/groups/57" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 346.5, + "t": 396.9202, + "r": 561.3753600000003, + "b": 361.13656080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 43 + ] + } + ], + "orig": "b. Before approval of your claim, you must:", + "text": "Before approval of your claim, you must:", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/502", + "parent": { + "$ref": "#/groups/57" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 360.9, + "t": 353.3202, + "r": 548.5585679999999, + "b": 277.5057590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 98 + ] + } + ], + "orig": "(1) Agree to a claim payment that reflects your buying back the salvage on a negotiated basis; and", + "text": "Agree to a claim payment that reflects your buying back the salvage on a negotiated basis; and", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/503", + "parent": { + "$ref": "#/groups/57" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 360.9, + "t": 268.8202, + "r": 565.4284200000003, + "b": 53.054560801781804, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 272 + ] + } + ], + "orig": "(2) Grant the conservation easement described in FEMA's 'Policy Guidance for Closed Basin Lakes' to be recorded in the office of the local recorder of deeds. FEMA, in consultation with the community in which the property is located, will identify on a map an area or areas", + "text": "Grant the conservation easement described in FEMA's 'Policy Guidance for Closed Basin Lakes' to be recorded in the office of the local recorder of deeds. FEMA, in consultation with the community in which the property is located, will identify on a map an area or areas", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/504", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/505", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 25, + "bbox": { + "l": 506.43, + "t": 36.13409999999999, + "r": 567.0909, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 23 OF 30", + "text": "PAGE 23 OF 30" + }, + { + "self_ref": "#/texts/506", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 112.5, + "t": 747.0002, + "r": 301.0994280000001, + "b": 51.282560801781415, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 937 + ] + } + ], + "orig": "of special consideration (ASC) in which there is a potential for flood damage from continuous lake flooding. FEMA will give the community the agreedupon map showing the ASC. This easement will only apply to that portion of the property in the ASC. It will allow certain agricultural and recreational uses of the land. The only structures it will allow on any portion of the property within the ASC are certain simple agricultural and recreational structures. If any of these allowable structures are insurable buildings under the NFIP and are insured under the NFIP, they will not be eligible for the benefits of this paragraph Q.2. If a U.S. Army Corps of Engineers certified flood control project or otherwise certified flood control project later protects the property, FEMA will, upon request, amend the ASC to remove areas protected by those projects. The restrictions of the easement will then no longer apply to any portion of the", + "text": "of special consideration (ASC) in which there is a potential for flood damage from continuous lake flooding. FEMA will give the community the agreedupon map showing the ASC. This easement will only apply to that portion of the property in the ASC. It will allow certain agricultural and recreational uses of the land. The only structures it will allow on any portion of the property within the ASC are certain simple agricultural and recreational structures. If any of these allowable structures are insurable buildings under the NFIP and are insured under the NFIP, they will not be eligible for the benefits of this paragraph Q.2. If a U.S. Army Corps of Engineers certified flood control project or otherwise certified flood control project later protects the property, FEMA will, upon request, amend the ASC to remove areas protected by those projects. The restrictions of the easement will then no longer apply to any portion of the" + }, + { + "self_ref": "#/texts/507", + "parent": { + "$ref": "#/groups/58" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 382.50144, + "t": 747.0721999999996, + "r": 555.4828979999999, + "b": 711.2537590551177, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "property removed from the ASC; and", + "text": "property removed from the ASC; and", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/508", + "parent": { + "$ref": "#/groups/58" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 360.9, + "t": 702.5002, + "r": 550.6642439999998, + "b": 666.7165608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 53 + ] + } + ], + "orig": "(3) Comply with paragraphs Q.1.a through Q.1.d above.", + "text": "Comply with paragraphs Q.1.a through Q.1.d above.", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/509", + "parent": { + "$ref": "#/groups/58" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 346.5, + "t": 658.0002, + "r": 571.4668259999999, + "b": 502.22856080178144, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 230 + ] + } + ], + "orig": "c. Within 90 days of approval of your claim, you must move your building to a new location outside the ASC. FEMA will give you an additional 30 days to move if you show there is sufficient reason to extend the time.", + "text": " Within 90 days of approval of your claim, you must move your building to a new location outside the ASC. FEMA will give you an additional 30 days to move if you show there is sufficient reason to extend the time.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/510", + "parent": { + "$ref": "#/groups/58" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 346.5, + "t": 494.40020000000004, + "r": 571.46148, + "b": 358.61656080178176, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 214 + ] + } + ], + "orig": "d. Before the final payment of your claim, you must acquire an elevation certificate and a floodplain development permit from the local floodplain administrator for the new location of your building.", + "text": "Before the final payment of your claim, you must acquire an elevation certificate and a floodplain development permit from the local floodplain administrator for the new location of your building.", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/511", + "parent": { + "$ref": "#/groups/58" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 346.5, + "t": 350.8002, + "r": 571.4383139999999, + "b": 275.0205608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 103 + ] + } + ], + "orig": "e. Before the approval of your claim, the community having jurisdiction over your building must:", + "text": "Before the approval of your claim, the community having jurisdiction over your building must:", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/512", + "parent": { + "$ref": "#/groups/58" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 360.9, + "t": 267.2002, + "r": 566.198406, + "b": 71.43256080178185, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 264 + ] + } + ], + "orig": "(1) Adopt a permanent land use ordinance, or a temporary moratorium for a period not to exceed 6 months to be followed immediately by a permanent land use ordinance that is consistent with the provisions specified in the easement required in paragraph Q.2.b above;", + "text": "Adopt a permanent land use ordinance, or a temporary moratorium for a period not to exceed 6 months to be followed immediately by a permanent land use ordinance that is consistent with the provisions specified in the easement required in paragraph Q.2.b above;", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/513", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/514", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 26, + "bbox": { + "l": 506.448, + "t": 36.13409999999999, + "r": 566.9973000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 24 OF 30", + "text": "PAGE 24 OF 30" + }, + { + "self_ref": "#/texts/515", + "parent": { + "$ref": "#/groups/59" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 90.9, + "t": 746.6401999999999, + "r": 299.7358020000001, + "b": 590.8197590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 207 + ] + } + ], + "orig": "(2) Agree to declare and report any violations of this ordinance to FEMA so that under Section 1316 of the National Flood Insurance Act of 1968, as amended, flood insurance to the building can be denied; and", + "text": "Agree to declare and report any violations of this ordinance to FEMA so that under Section 1316 of the National Flood Insurance Act of 1968, as amended, flood insurance to the building can be denied; and", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/516", + "parent": { + "$ref": "#/groups/59" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 90.9, + "t": 582.1401999999999, + "r": 300.6000720000002, + "b": 86.35456080178176, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 648 + ] + } + ], + "orig": "(3) Agree to maintain as deedrestricted, for purposes compatible with open space or agricultural or recreational use only, any affected property the community acquires an interest in. These deed restrictions must be consistent with the provisions of paragraph Q.2.b above, except that, even if a certified project protects the property, the land use restrictions continue to apply if the property was acquired under the Hazard Mitigation Grant Program or the Flood Mitigation Assistance Program. If a non-profit land trust organization receives the property as a donation, that organization must maintain the property as deed-restricted, consistent", + "text": "Agree to maintain as deedrestricted, for purposes compatible with open space or agricultural or recreational use only, any affected property the community acquires an interest in. These deed restrictions must be consistent with the provisions of paragraph Q.2.b above, except that, even if a certified project protects the property, the land use restrictions continue to apply if the property was acquired under the Hazard Mitigation Grant Program or the Flood Mitigation Assistance Program. If a non-profit land trust organization receives the property as a donation, that organization must maintain the property as deed-restricted, consistent", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/517", + "parent": { + "$ref": "#/groups/59" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 382.5, + "t": 746.6401999999999, + "r": 527.054832, + "b": 710.8545608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 44 + ] + } + ], + "orig": "with the provisions of paragraph Q2.b above.", + "text": "with the provisions of paragraph Q2.b above.", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/518", + "parent": { + "$ref": "#/groups/59" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 346.5, + "t": 702.1401999999999, + "r": 571.4793000000003, + "b": 606.3545608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 142 + ] + } + ], + "orig": "f. Before the approval of your claim, the affected State must take all action set forth in FEMA's 'Policy Guidance for Closed Basin Lakes.'", + "text": " Before the approval of your claim, the affected State must take all action set forth in FEMA's 'Policy Guidance for Closed Basin Lakes.'", + "enumerated": true, + "marker": "f." + }, + { + "self_ref": "#/texts/519", + "parent": { + "$ref": "#/groups/59" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 346.5, + "t": 598.5401999999999, + "r": 571.4757360000003, + "b": 142.75456080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 707 + ] + } + ], + "orig": "g. You must have NFIP flood insurance coverage con tinuously in effect from a date established by FEMA until you file a claim under paragraph Q.2. If a subsequent owner buys NFIP insurance that goes into effect within 60 days of the date of transfer of title, any gap in coverage during that 60-day period will not be a violation of this continuous coverage requirement. For the purpose of honoring a claim under this paragraph Q.2, we will not consider to be in effect any increased coverage that became effective after the date established by FEMA. The exception to this is any increased coverage in the amount suggested by your insurer as an inflation adjustment.", + "text": "You must have NFIP flood insurance coverage con tinuously in effect from a date established by FEMA until you file a claim under paragraph Q.2. If a subsequent owner buys NFIP insurance that goes into effect within 60 days of the date of transfer of title, any gap in coverage during that 60-day period will not be a violation of this continuous coverage requirement. For the purpose of honoring a claim under this paragraph Q.2, we will not consider to be in effect any increased coverage that became effective after the date established by FEMA. The exception to this is any increased coverage in the amount suggested by your insurer as an inflation adjustment.", + "enumerated": true, + "marker": "g." + }, + { + "self_ref": "#/texts/520", + "parent": { + "$ref": "#/groups/59" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 346.5, + "t": 134.9402, + "r": 571.4650439999997, + "b": 59.15456080178171, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 132 + ] + } + ], + "orig": "h. This paragraph Q.2 will be in effect for a community when the FEMA Regional Administrator for the affected region provides", + "text": "This paragraph Q.2 will be in effect for a community when the FEMA Regional Administrator for the affected region provides", + "enumerated": true, + "marker": "h." + }, + { + "self_ref": "#/texts/521", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000005, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/522", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 27, + "bbox": { + "l": 506.376, + "t": 36.13409999999999, + "r": 567.0873, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 25 OF 30", + "text": "PAGE 25 OF 30" + }, + { + "self_ref": "#/texts/523", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 94.5, + "t": 747.0002, + "r": 301.4383139999998, + "b": 711.2165608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 48 + ] + } + ], + "orig": "to the community, in writing, the following:", + "text": "to the community, in writing, the following:", + "level": 1 + }, + { + "self_ref": "#/texts/524", + "parent": { + "$ref": "#/groups/60" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 88.2, + "t": 703.4001999999999, + "r": 284.56561800000014, + "b": 607.5877590551179, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 129 + ] + } + ], + "orig": "(1) Confirmation that the community and the State are in compliance with the conditions in paragraphs Q.2.e and Q.2.f above; and", + "text": " Confirmation that the community and the State are in compliance with the conditions in paragraphs Q.2.e and Q.2.f above; and", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/525", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 88.2, + "t": 598.9001999999999, + "r": 296.321436, + "b": 543.1185608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 63 + ] + } + ], + "orig": "(2) The date by which you must have flood insurance in effect.", + "text": "(2) The date by which you must have flood insurance in effect.", + "level": 1 + }, + { + "self_ref": "#/texts/526", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 45.0, + "t": 531.7552, + "r": 129.71497949999997, + "b": 522.5311562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 18 + ] + } + ], + "orig": "R. Loss Settlement", + "text": "R. Loss Settlement", + "level": 1 + }, + { + "self_ref": "#/texts/527", + "parent": { + "$ref": "#/groups/61" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 58.5, + "t": 513.9122, + "r": 128.59974000000003, + "b": 505.12739640852976, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 15 + ] + } + ], + "orig": "1. Introduction", + "text": "Introduction", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/528", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 76.5, + "t": 496.41220000000004, + "r": 299.9826000000003, + "b": 435.6758323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 219 + ] + } + ], + "orig": "This policy provides three methods of settling losses: Replacement Cost, Special Loss Settlement, and Actual Cash Value. Each method is used for a different type of property, as explained in paragraphs a-c below.", + "text": "This policy provides three methods of settling losses: Replacement Cost, Special Loss Settlement, and Actual Cash Value. Each method is used for a different type of property, as explained in paragraphs a-c below." + }, + { + "self_ref": "#/texts/529", + "parent": { + "$ref": "#/groups/62" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 76.5, + "t": 425.40020000000004, + "r": 301.53097800000006, + "b": 349.61856080178177, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 113 + ] + } + ], + "orig": "a. Replacement Cost Loss Set tlement , described in R.2 below, applies to a singlefamily dwelling provided:", + "text": "Replacement Cost Loss Set tlement , described in R.2 below, applies to a singlefamily dwelling provided:", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/530", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 88.2, + "t": 341.8002, + "r": 233.38162800000003, + "b": 305.9817590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 40 + ] + } + ], + "orig": "(1) It is your principal residence; and", + "text": "(1) It is your principal residence; and", + "level": 1 + }, + { + "self_ref": "#/texts/531", + "parent": { + "$ref": "#/groups/63" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 88.2, + "t": 297.3002, + "r": 297.0338040000001, + "b": 121.5305608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 237 + ] + } + ], + "orig": "(2) At the time of loss, the amount of insurance in this policy that applies to the dwelling is 80 percent or more of its full replacement cost immediately before the loss, or is the maximum amount of insurance available under the NFIP.", + "text": " At the time of loss, the amount of insurance in this policy that applies to the dwelling is 80 percent or more of its full replacement cost immediately before the loss, or is the maximum amount of insurance available under the NFIP.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/532", + "parent": { + "$ref": "#/groups/63" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 76.5, + "t": 114.31219999999996, + "r": 299.9923200000002, + "b": 66.5758323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 160 + ] + } + ], + "orig": "b. Special Loss Settlement , described in R.3 below, applies to a single-family dwelling that is a manufactured or mobile home or a travel trailer.", + "text": "Special Loss Settlement , described in R.3 below, applies to a single-family dwelling that is a manufactured or mobile home or a travel trailer.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/533", + "parent": { + "$ref": "#/groups/63" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 346.5, + "t": 747.0001, + "r": 569.9824200000004, + "b": 699.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 182 + ] + } + ], + "orig": "c. Actual Cash Value Loss Settlement applies to a single-family dwelling not subject to replacement cost or special loss settlement, and to the property listed in R.4 below.", + "text": "Actual Cash Value Loss Settlement applies to a single-family dwelling not subject to replacement cost or special loss settlement, and to the property listed in R.4 below.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/534", + "parent": { + "$ref": "#/groups/63" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 328.5, + "t": 691.4001000000001, + "r": 499.75793999999934, + "b": 682.6152964085298, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "2. Replacement Cost Loss Settlement", + "text": "Replacement Cost Loss Settlement", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/535", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 346.5, + "t": 673.9001000000001, + "r": 569.9766600000006, + "b": 652.1637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 100 + ] + } + ], + "orig": "The following loss settlement conditions apply to a single-family dwelling described in R.1.a above:", + "text": "The following loss settlement conditions apply to a single-family dwelling described in R.1.a above:" + }, + { + "self_ref": "#/texts/536", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 346.5, + "t": 643.4001000000001, + "r": 569.9754899999997, + "b": 595.6637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 191 + ] + } + ], + "orig": "a. We will pay to repair or replace the damaged dwelling after application of the deductible and without deduction for depreciation, but not more than the least of the following amounts:", + "text": "We will pay to repair or replace the damaged dwelling after application of the deductible and without deduction for depreciation, but not more than the least of the following amounts:", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/537", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 364.5, + "t": 587.8001, + "r": 569.9881800000002, + "b": 566.0637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 74 + ] + } + ], + "orig": "(1) The building limit of liability shown on your Declarations Page;", + "text": "The building limit of liability shown on your Declarations Page;", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/538", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 364.5, + "t": 557.3001, + "r": 569.9901600000002, + "b": 522.5044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 124 + ] + } + ], + "orig": "(2) The replacement cost of that part of the dwelling damaged, with materials of like kind and quality and for like use; or", + "text": "The replacement cost of that part of the dwelling damaged, with materials of like kind and quality and for like use; or", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/539", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 364.5, + "t": 513.8000999999999, + "r": 569.9871900000005, + "b": 479.0637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 108 + ] + } + ], + "orig": "(3) The necessary amount actually spent to repair or replace the damaged part of the dwelling for like use.", + "text": " The necessary amount actually spent to repair or replace the damaged part of the dwelling for like use.", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/540", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 346.5, + "t": 470.3001, + "r": 569.9863799999999, + "b": 422.5637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 190 + ] + } + ], + "orig": "b. If the dwelling is rebuilt at a new location, the cost described above is limited to the cost that would have been incurred if the dwelling had been rebuilt at its former location.", + "text": "If the dwelling is rebuilt at a new location, the cost described above is limited to the cost that would have been incurred if the dwelling had been rebuilt at its former location.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/541", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 346.5, + "t": 414.7001, + "r": 569.9952900000002, + "b": 340.96373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 283 + ] + } + ], + "orig": "c. When the full cost of repair or replacement is more than $1,000, or more than 5 percent of the whole amount of insurance that applies to the dwelling, we will not be liable for any loss under R.2.a above or R.4.a.2 below unless and until actual repair or replacement is completed.", + "text": "When the full cost of repair or replacement is more than $1,000, or more than 5 percent of the whole amount of insurance that applies to the dwelling, we will not be liable for any loss under R.2.a above or R.4.a.2 below unless and until actual repair or replacement is completed.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/542", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 346.5, + "t": 333.1001, + "r": 569.9923199999997, + "b": 246.36373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 326 + ] + } + ], + "orig": "d. You may disregard the replacement cost conditions above and make claim under this policy for loss to dwellings on an actual cash value basis. You may then make claim for any additional liability according to R.2.a, b, and c above, provided you notify us of your intent to do so within 180 days after the date of loss.", + "text": "You may disregard the replacement cost conditions above and make claim under this policy for loss to dwellings on an actual cash value basis. You may then make claim for any additional liability according to R.2.a, b, and c above, provided you notify us of your intent to do so within 180 days after the date of loss.", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/543", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 346.5, + "t": 238.50009999999997, + "r": 569.9873699999998, + "b": 151.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 332 + ] + } + ], + "orig": "e. If the community in which your dwelling is located has been converted from the Emergency Program to the Regular Program during the current policy term, then we will consider the maximum amount of available NFIP insurance to be the amount that was available at the beginning of the current policy term.", + "text": "If the community in which your dwelling is located has been converted from the Emergency Program to the Regular Program during the current policy term, then we will consider the maximum amount of available NFIP insurance to be the amount that was available at the beginning of the current policy term.", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/544", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 328.5, + "t": 143.00009999999997, + "r": 451.7706600000005, + "b": 134.21529640852975, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 26 + ] + } + ], + "orig": "3. Special Loss Settlement", + "text": "Special Loss Settlement", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/545", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 346.5, + "t": 125.50009999999997, + "r": 569.9645999999998, + "b": 103.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 83 + ] + } + ], + "orig": "a. The following loss settlement conditions apply to a single-family dwelling that:", + "text": "The following loss settlement conditions apply to a single-family dwelling that:", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/546", + "parent": { + "$ref": "#/groups/64" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 364.5, + "t": 95.90009999999995, + "r": 569.9693700000005, + "b": 74.16373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 94 + ] + } + ], + "orig": "(1) is a manufactured or mobile home or a travel trailer, as defined in II.C.6.b and c;", + "text": "is a manufactured or mobile home or a travel trailer, as defined in II.C.6.b and c;", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/547", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/548", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 28, + "bbox": { + "l": 506.304, + "t": 36.13409999999999, + "r": 566.9937000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 26 OF 30", + "text": "PAGE 26 OF 30" + }, + { + "self_ref": "#/texts/549", + "parent": { + "$ref": "#/groups/65" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 94.5, + "t": 747.0001, + "r": 299.9891699999999, + "b": 699.2044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 154 + ] + } + ], + "orig": "(2) is at least 16 feet wide when fully assembled and has an area of at least 600 square feet within its perimeter walls when fully assembled; and", + "text": "is at least 16 feet wide when fully assembled and has an area of at least 600 square feet within its perimeter walls when fully assembled; and", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/550", + "parent": { + "$ref": "#/groups/65" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 94.5, + "t": 690.5001, + "r": 299.9475899999997, + "b": 668.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 62 + ] + } + ], + "orig": "(3) is your principal residence as specified in R.1.a.1 above.", + "text": "is your principal residence as specified in R.1.a.1 above.", + "enumerated": true, + "marker": "(3)" + }, + { + "self_ref": "#/texts/551", + "parent": { + "$ref": "#/groups/65" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 76.5, + "t": 660.0001, + "r": 299.98044000000004, + "b": 599.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 250 + ] + } + ], + "orig": "b. If such a dwelling is totally destroyed or damaged to such an extent that, in our judgment, it is not economically feasible to repair, at least to its pre-damage condition, we will, at our discretion pay the least of the following amounts:", + "text": "If such a dwelling is totally destroyed or damaged to such an extent that, in our judgment, it is not economically feasible to repair, at least to its pre-damage condition, we will, at our discretion pay the least of the following amounts:", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/552", + "parent": { + "$ref": "#/groups/65" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 94.5, + "t": 591.4001000000001, + "r": 297.91016999999977, + "b": 556.6044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 93 + ] + } + ], + "orig": "(1) The lesser of the replacement cost of the dwelling or 1.5 times the actual cash value; or", + "text": "The lesser of the replacement cost of the dwelling or 1.5 times the actual cash value; or", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/553", + "parent": { + "$ref": "#/groups/65" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 94.5, + "t": 547.9001000000001, + "r": 281.9899799999998, + "b": 526.1637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 68 + ] + } + ], + "orig": "(2) The building limit of liability shown on your Declarations Page.", + "text": "The building limit of liability shown on your Declarations Page.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/554", + "parent": { + "$ref": "#/groups/65" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 76.5, + "t": 517.4001, + "r": 299.98341, + "b": 456.66373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 237 + ] + } + ], + "orig": "c. If such a dwelling is partially damaged and, in our judgment, it is economically feasible to repair it to its pre-damage condition, we will settle the loss according to the Replacement Cost conditions in R.2 above.", + "text": "If such a dwelling is partially damaged and, in our judgment, it is economically feasible to repair it to its pre-damage condition, we will settle the loss according to the Replacement Cost conditions in R.2 above.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/555", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 58.5, + "t": 447.9001, + "r": 228.32837999999992, + "b": 439.11529640852973, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "4. Actual Cash Value Loss Settlement", + "text": "4. Actual Cash Value Loss Settlement", + "level": 1 + }, + { + "self_ref": "#/texts/556", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 76.5, + "t": 431.3001, + "r": 299.98359000000016, + "b": 396.5637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 149 + ] + } + ], + "orig": "The types of property noted below are subject to actual cash value (or in the case of R.4.a.2., below, proportional) loss settlement.", + "text": "The types of property noted below are subject to actual cash value (or in the case of R.4.a.2., below, proportional) loss settlement." + }, + { + "self_ref": "#/texts/557", + "parent": { + "$ref": "#/groups/66" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 76.5, + "t": 387.8001, + "r": 299.9933100000003, + "b": 275.0637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 411 + ] + } + ], + "orig": "a. A dwelling, at the time of loss, when the amount of insurance on the dwelling is both less than 80 percent of its full replacement cost immediately before the loss and less than the maximum amount of insurance available under the NFIP. In that case, we will pay the greater of the following amounts, but not more than the amount of insurance that applies to that dwelling:", + "text": "A dwelling, at the time of loss, when the amount of insurance on the dwelling is both less than 80 percent of its full replacement cost immediately before the loss and less than the maximum amount of insurance available under the NFIP. In that case, we will pay the greater of the following amounts, but not more than the amount of insurance that applies to that dwelling:", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/558", + "parent": { + "$ref": "#/groups/66" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 94.5, + "t": 267.2001, + "r": 299.9584799999999, + "b": 245.4044340857788, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 88 + ] + } + ], + "orig": "(1) The actual cash value, as defined in II.C.2, of the damaged part of the dwelling; or", + "text": "The actual cash value, as defined in II.C.2, of the damaged part of the dwelling; or", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/559", + "parent": { + "$ref": "#/groups/66" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 94.5, + "t": 236.70010000000002, + "r": 299.9891699999998, + "b": 188.96373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 172 + ] + } + ], + "orig": "(2) A proportion of the cost to repair or replace the damaged part of the dwelling, without deduction for physical depreciation and after application of the deductible.", + "text": "A proportion of the cost to repair or replace the damaged part of the dwelling, without deduction for physical depreciation and after application of the deductible.", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/560", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 112.5, + "t": 180.20010000000002, + "r": 299.9931299999999, + "b": 145.46373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 130 + ] + }, + { + "page_no": 29, + "bbox": { + "l": 382.5027, + "t": 747.0001, + "r": 569.9988000000005, + "b": 582.2637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 131, + 663 + ] + } + ], + "orig": "This proportion is determined as follows: If 80 percent of the full replacement cost of the dwelling is less than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the amount of insurance that represents 80 percent of its full replacement cost. But if 80 percent of the full replacement cost of the dwelling is greater than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the maximum amount of insurance available under the NFIP.", + "text": "This proportion is determined as follows: If 80 percent of the full replacement cost of the dwelling is less than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the amount of insurance that represents 80 percent of its full replacement cost. But if 80 percent of the full replacement cost of the dwelling is greater than the maximum amount of insurance available under the NFIP, then the proportion is determined by dividing the actual amount of insurance on the dwelling by the maximum amount of insurance available under the NFIP." + }, + { + "self_ref": "#/texts/561", + "parent": { + "$ref": "#/groups/67" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 573.5001, + "r": 523.0544399999994, + "b": 564.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 43 + ] + } + ], + "orig": "b. A two-, three-, or four-family dwelling.", + "text": "A two-, three-, or four-family dwelling.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/562", + "parent": { + "$ref": "#/groups/67" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 556.9001000000001, + "r": 553.47516, + "b": 535.1637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 74 + ] + } + ], + "orig": "c. A unit that is not used exclusively for singlefamily dwelling purposes.", + "text": "A unit that is not used exclusively for singlefamily dwelling purposes.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/563", + "parent": { + "$ref": "#/groups/67" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 527.3001, + "r": 445.93245000000024, + "b": 518.5637323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 20 + ] + } + ], + "orig": "d. Detached garages.", + "text": "Detached garages.", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/564", + "parent": { + "$ref": "#/groups/67" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 510.7001, + "r": 443.20698000000016, + "b": 501.96373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "e. Personal property.", + "text": "Personal property.", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/565", + "parent": { + "$ref": "#/groups/67" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 494.1001, + "r": 528.5439899999998, + "b": 485.36373238512033, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 40 + ] + } + ], + "orig": "f. Appliances, carpets, and carpet pads.", + "text": "Appliances, carpets, and carpet pads.", + "enumerated": true, + "marker": "f." + }, + { + "self_ref": "#/texts/566", + "parent": { + "$ref": "#/groups/67" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 477.50010000000003, + "r": 569.9527199999998, + "b": 455.76373238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 89 + ] + } + ], + "orig": "g. Outdoor awnings, outdoor antennas or aerials of any type, and other outdoor equipment.", + "text": "Outdoor awnings, outdoor antennas or aerials of any type, and other outdoor equipment.", + "enumerated": true, + "marker": "g." + }, + { + "self_ref": "#/texts/567", + "parent": { + "$ref": "#/groups/67" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 447.9001, + "r": 569.97945, + "b": 413.16373238512034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 130 + ] + } + ], + "orig": "h. Any property insured under this policy that is abandoned after a loss and remains as debris anywhere on the described location.", + "text": "Any property insured under this policy that is abandoned after a loss and remains as debris anywhere on the described location.", + "enumerated": true, + "marker": "h." + }, + { + "self_ref": "#/texts/568", + "parent": { + "$ref": "#/groups/67" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 405.3001, + "r": 562.0396499999999, + "b": 396.5637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 51 + ] + } + ], + "orig": "i. A dwelling that is not your principal residence.", + "text": "A dwelling that is not your principal residence.", + "enumerated": true, + "marker": "i." + }, + { + "self_ref": "#/texts/569", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 328.5, + "t": 387.8001, + "r": 479.25009000000057, + "b": 379.0152964085297, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 31 + ] + } + ], + "orig": "5. Amount of Insurance Required", + "text": "5. Amount of Insurance Required", + "level": 1 + }, + { + "self_ref": "#/texts/570", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 371.20009999999996, + "r": 569.9954700000006, + "b": 336.4637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 121 + ] + } + ], + "orig": "To determine the amount of insurance required for a dwelling immediately before the loss, we do not include the value of:", + "text": "To determine the amount of insurance required for a dwelling immediately before the loss, we do not include the value of:" + }, + { + "self_ref": "#/texts/571", + "parent": { + "$ref": "#/groups/68" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 327.7001, + "r": 569.9893500000001, + "b": 279.96373238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 169 + ] + } + ], + "orig": "a. Footings, foundations, piers, or any other structures or devices that are below the undersurface of the lowest basement floor and support all or part of the dwelling;", + "text": "Footings, foundations, piers, or any other structures or devices that are below the undersurface of the lowest basement floor and support all or part of the dwelling;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/572", + "parent": { + "$ref": "#/groups/68" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 272.1001, + "r": 569.9853899999998, + "b": 237.30443408577878, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 145 + ] + } + ], + "orig": "b. Those supports listed in R.5.a above, that are below the surface of the ground inside the foundation walls if there is no basement; and", + "text": "Those supports listed in R.5.a above, that are below the surface of the ground inside the foundation walls if there is no basement; and", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/573", + "parent": { + "$ref": "#/groups/68" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5, + "t": 229.50009999999997, + "r": 569.9824200000013, + "b": 207.7637323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 66 + ] + } + ], + "orig": "c. Excavations and underground flues, pipes, wiring, and drains.", + "text": "Excavations and underground flues, pipes, wiring, and drains.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/574", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 346.5018, + "t": 199.90010000000007, + "r": 569.9814300000002, + "b": 165.16373238512028, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 150 + ] + } + ], + "orig": "Note: The Coverage D-Increased Cost of Compliance limit of liability is not included in the determination of the amount of insurance required.", + "text": "Note: The Coverage D-Increased Cost of Compliance limit of liability is not included in the determination of the amount of insurance required." + }, + { + "self_ref": "#/texts/575", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/576", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 29, + "bbox": { + "l": 506.529, + "t": 36.13409999999999, + "r": 567.0909000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 27 OF 30", + "text": "PAGE 27 OF 30" + }, + { + "self_ref": "#/texts/577", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 141.1849, + "t": 739.6460000000001, + "r": 470.81420000000054, + "b": 730.0801927194861, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 57 + ] + } + ], + "orig": "VIII. POLICY NULLIFICATION, CANCELLATION, AND NON-RENEWAL", + "text": "VIII. POLICY NULLIFICATION, CANCELLATION, AND NON-RENEWAL", + "level": 1 + }, + { + "self_ref": "#/texts/578", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 45.0, + "t": 708.303, + "r": 297.7470359999998, + "b": 686.0799562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 85 + ] + } + ], + "orig": "A. Policy Nullification for Fraud, Misrepresentation, or Making False Statements", + "text": "Policy Nullification for Fraud, Misrepresentation, or Making False Statements", + "enumerated": true, + "marker": "A." + }, + { + "self_ref": "#/texts/579", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 57.06, + "t": 675.948, + "r": 299.2788000000001, + "b": 520.1763608017815, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 268 + ] + } + ], + "orig": "1. With respect to all insureds under this policy, this policy is void and has no legal force and effect if at any time, before or after a loss, you or any other insured or your agent have, with respect to this policy or any other NFIP insurance:", + "text": "With respect to all insureds under this policy, this policy is void and has no legal force and effect if at any time, before or after a loss, you or any other insured or your agent have, with respect to this policy or any other NFIP insurance:", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/580", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 76.5, + "t": 511.44800000000004, + "r": 259.15680000000003, + "b": 455.66436080178175, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 65 + ] + } + ], + "orig": "a. Concealed or misrepresented any material fact or circumstance;", + "text": "Concealed or misrepresented any material fact or circumstance;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/581", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 76.5, + "t": 447.848, + "r": 240.16246199999992, + "b": 412.0295590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "b. Engaged in fraudulent conduct; or", + "text": "Engaged in fraudulent conduct; or", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/582", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 76.5, + "t": 404.248, + "r": 246.96970199999998, + "b": 388.4623608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 26 + ] + } + ], + "orig": "c. Made false statements.", + "text": " Made false statements.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/583", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 57.06, + "t": 377.76800000000003, + "r": 299.22479999999985, + "b": 321.98636080178176, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 80 + ] + } + ], + "orig": "2. Policies voided under A.1 cannot be renewed or replaced by a new NFIP policy.", + "text": "Policies voided under A.1 cannot be renewed or replaced by a new NFIP policy.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/584", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 57.06, + "t": 311.288, + "r": 299.2806000000001, + "b": 255.50636080178174, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 89 + ] + } + ], + "orig": "3. Policies are void as of the date the acts described in A.1 above were committed.", + "text": "Policies are void as of the date the acts described in A.1 above were committed.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/585", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 57.06, + "t": 244.808, + "r": 299.28060000000005, + "b": 149.03036080178185, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 141 + ] + } + ], + "orig": "4. Fines, civil penalties, and imprisonment under applicable Federal laws may also apply to the acts of fraud or concealment described above.", + "text": "Fines, civil penalties, and imprisonment under applicable Federal laws may also apply to the acts of fraud or concealment described above.", + "enumerated": true, + "marker": "4." + }, + { + "self_ref": "#/texts/586", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 45.0, + "t": 135.683, + "r": 275.1971625, + "b": 126.45895622895625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 52 + ] + } + ], + "orig": "B. Policy Nullification for Reasons Other Than Fraud", + "text": "Policy Nullification for Reasons Other Than Fraud", + "enumerated": true, + "marker": "B." + }, + { + "self_ref": "#/texts/587", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 57.06, + "t": 116.32799999999997, + "r": 299.2482, + "b": 60.5463608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 80 + ] + } + ], + "orig": "1. This policy is void from its inception, and has no legal force or effect, if:", + "text": "This policy is void from its inception, and has no legal force or effect, if:", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/588", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 348.75, + "t": 706.548, + "r": 571.4821980000005, + "b": 551.4063608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 235 + ] + } + ], + "orig": "a. The property listed on the application is located in a community that was not participating in the NFIP on this policy's inception date and did not join or reenter the program during the policy term and before the loss occurred;", + "text": "The property listed on the application is located in a community that was not participating in the NFIP on this policy's inception date and did not join or reenter the program during the policy term and before the loss occurred;", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/589", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 348.75, + "t": 543.7479999999999, + "r": 571.4821979999998, + "b": 448.33036080178164, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 146 + ] + } + ], + "orig": "b. The property listed on the application is otherwise not eligible for coverage under the NFIP at the time of the initial application;", + "text": "The property listed on the application is otherwise not eligible for coverage under the NFIP at the time of the initial application;", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/590", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 348.75, + "t": 440.648, + "r": 571.473288, + "b": 385.0463608017817, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 90 + ] + } + ], + "orig": "c. You never had an insurable interest in the property listed on the application;", + "text": " You never had an insurable interest in the property listed on the application;", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/591", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 348.75, + "t": 377.348, + "r": 571.476852, + "b": 321.7115590551181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 94 + ] + } + ], + "orig": "d. You provided an agent with an application and payment, but the payment did not clear; or", + "text": "You provided an agent with an application and payment, but the payment did not clear; or", + "enumerated": true, + "marker": "d." + }, + { + "self_ref": "#/texts/592", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 348.75, + "t": 314.048, + "r": 571.478634, + "b": 138.9983608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 263 + ] + } + ], + "orig": "e. We receive notice from you, prior to the policy effective date, that you have determined not to take the policy and you are not subject to a requirement to obtain and maintain flood insurance pursuant to any statute, regulation, or contract.", + "text": "We receive notice from you, prior to the policy effective date, that you have determined not to take the policy and you are not subject to a requirement to obtain and maintain flood insurance pursuant to any statute, regulation, or contract.", + "enumerated": true, + "marker": "e." + }, + { + "self_ref": "#/texts/593", + "parent": { + "$ref": "#/groups/69" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 330.75, + "t": 131.86, + "r": 569.9823300000006, + "b": 58.123632385120345, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 304 + ] + } + ], + "orig": "2. In such cases, you will be entitled to a full refund of all premium, fees, and surcharges received. However, if a claim was paid for a policy that is void, the claim payment must be returned to FEMA or offset from the premiums to be refunded before the refund will be processed.", + "text": "In such cases, you will be entitled to a full refund of all premium, fees, and surcharges received. However, if a claim was paid for a policy that is void, the claim payment must be returned to FEMA or offset from the premiums to be refunded before the refund will be processed.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/594", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/595", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 30, + "bbox": { + "l": 506.259, + "t": 36.13409999999999, + "r": 566.9955000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 28 OF 30", + "text": "PAGE 28 OF 30" + }, + { + "self_ref": "#/texts/596", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 45.0, + "t": 747.0001, + "r": 201.919689, + "b": 737.7760562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "C. Cancellation of the Policy by You", + "text": "C. Cancellation of the Policy by You", + "level": 1 + }, + { + "self_ref": "#/texts/597", + "parent": { + "$ref": "#/groups/70" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 58.5, + "t": 729.1571, + "r": 299.9925000000001, + "b": 694.4207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 157 + ] + } + ], + "orig": "1. You may cancel this policy in accordance with the terms and conditions of this policy and the applicable rules and regulations of the NFIP.", + "text": "You may cancel this policy in accordance with the terms and conditions of this policy and the applicable rules and regulations of the NFIP.", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/598", + "parent": { + "$ref": "#/groups/70" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 58.5, + "t": 685.6571, + "r": 300.0053700000002, + "b": 637.9207323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 219 + ] + } + ], + "orig": "2. If you cancel this policy, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP.", + "text": "If you cancel this policy, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP.", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/599", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 45.0, + "t": 625.0001, + "r": 196.73050499999994, + "b": 615.7760562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "D. Cancellation of the Policy by Us", + "text": "D. Cancellation of the Policy by Us", + "level": 1 + }, + { + "self_ref": "#/texts/600", + "parent": { + "$ref": "#/groups/71" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 57.06, + "t": 603.6650999999999, + "r": 301.59360000000027, + "b": 367.90146080178164, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 384 + ] + } + ], + "orig": "1. Cancellation for Underpayment of Amounts Owed on Policy. This policy will be cancelled, pursuant to VII.D.2, if it is determined that the premium amount you paid is not sufficient to buy any amount of coverage, and you do not pay the additional amount of premium owed to increase the coverage to the originally requested amount within the required time period.", + "text": "Cancellation for Underpayment of Amounts Owed on Policy. This policy will be cancelled, pursuant to VII.D.2, if it is determined that the premium amount you paid is not sufficient to buy any amount of coverage, and you do not pay the additional amount of premium owed to increase the coverage to the originally requested amount within the required time period.", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/601", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 57.06, + "t": 357.18510000000003, + "r": 299.6676000000003, + "b": 321.4204953488372, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 53 + ] + } + ], + "orig": "2. Cancellation Due to Lack of an Insurable Interest.", + "text": "2. Cancellation Due to Lack of an Insurable Interest.", + "level": 1 + }, + { + "self_ref": "#/texts/602", + "parent": { + "$ref": "#/groups/72" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 76.5, + "t": 310.7051, + "r": 301.468608, + "b": 214.92746080178176, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 157 + ] + } + ], + "orig": "a. If you no longer have an insurable interest in the insured property, we will cancel this policy. You will cease to have an insurable interest if:", + "text": "If you no longer have an insurable interest in the insured property, we will cancel this policy. You will cease to have an insurable interest if:", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/603", + "parent": { + "$ref": "#/groups/72" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 90.36, + "t": 207.1051, + "r": 259.964928, + "b": 151.32346080178172, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 72 + ] + } + ], + "orig": "(1) For building coverage, the building was sold, destroyed, or removed.", + "text": "For building coverage, the building was sold, destroyed, or removed.", + "enumerated": true, + "marker": "(1)" + }, + { + "self_ref": "#/texts/604", + "parent": { + "$ref": "#/groups/72" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 90.36, + "t": 142.6051, + "r": 278.31713399999995, + "b": 66.82546080178167, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 96 + ] + } + ], + "orig": "(2) For contents coverage, the contents were sold or transferred ownership, or the contents were", + "text": "For contents coverage, the contents were sold or transferred ownership, or the contents were", + "enumerated": true, + "marker": "(2)" + }, + { + "self_ref": "#/texts/605", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 381.96144, + "t": 747.0091, + "r": 549.9528299999998, + "b": 711.2254608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 47 + ] + } + ], + "orig": "completely removed from the described location.", + "text": "completely removed from the described location." + }, + { + "self_ref": "#/texts/606", + "parent": { + "$ref": "#/groups/73" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 346.5, + "t": 700.5201999999999, + "r": 571.4739540000005, + "b": 604.7425608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 159 + ] + } + ], + "orig": "b. If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the applicable rules and regulations of the NFIP.", + "text": "If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the applicable rules and regulations of the NFIP.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/607", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 328.5, + "t": 594.0401999999999, + "r": 530.3358000000002, + "b": 558.2755953488371, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 37 + ] + } + ], + "orig": "3. Cancellation of Duplicate Policies", + "text": "3. Cancellation of Duplicate Policies", + "level": 1 + }, + { + "self_ref": "#/texts/608", + "parent": { + "$ref": "#/groups/74" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 346.5, + "t": 549.5401999999999, + "r": 571.4668260000004, + "b": 433.76456080178167, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 192 + ] + } + ], + "orig": "a. Except as allowed under Article I.G, your property may not be insured by more than one NFIP policy, and payment for damages to your property will only be made under one policy.", + "text": "Except as allowed under Article I.G, your property may not be insured by more than one NFIP policy, and payment for damages to your property will only be made under one policy.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/609", + "parent": { + "$ref": "#/groups/74" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 346.5, + "t": 425.9402, + "r": 571.4686080000002, + "b": 250.1705608017818, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 294 + ] + } + ], + "orig": "b. Except as allowed under Article I.G, if the property is insured by more than one NFIP policy, we will cancel all but one of the policies. The policy, or policies, will be selected for cancellation in accordance with 44 CFR 62.5 and the applicable rules and guidance of the NFIP.", + "text": "Except as allowed under Article I.G, if the property is insured by more than one NFIP policy, we will cancel all but one of the policies. The policy, or policies, will be selected for cancellation in accordance with 44 CFR 62.5 and the applicable rules and guidance of the NFIP.", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/610", + "parent": { + "$ref": "#/groups/74" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 346.5, + "t": 242.34019999999998, + "r": 571.4882100000001, + "b": 86.56856080178181, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 250 + ] + } + ], + "orig": "c. If this policy is cancelled pursuant to VIII.D.4.b, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP.", + "text": " If this policy is cancelled pursuant to VIII.D.4.b, you may be entitled to a full or partial refund of premium, surcharges, or fees under the terms and conditions of this policy and the applicable rules and regulations of the NFIP.", + "enumerated": true, + "marker": "c." + }, + { + "self_ref": "#/texts/611", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 44.91, + "t": 36.13409999999999, + "r": 157.14630000000002, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/612", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 31, + "bbox": { + "l": 506.358, + "t": 36.13409999999999, + "r": 567.0864000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 29 OF 30", + "text": "PAGE 29 OF 30" + }, + { + "self_ref": "#/texts/613", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 58.5, + "t": 747.0002, + "r": 273.90059999999994, + "b": 711.2355953488371, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 54 + ] + } + ], + "orig": "4. Cancellation Due to Physical Alteration of Property", + "text": "4. Cancellation Due to Physical Alteration of Property", + "level": 1 + }, + { + "self_ref": "#/texts/614", + "parent": { + "$ref": "#/groups/75" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 76.5, + "t": 702.5002, + "r": 301.47573599999987, + "b": 606.7225608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 165 + ] + } + ], + "orig": "a. If the insured building has been physically altered in such a manner that it is no longer eligible for flood insurance coverage, we will cancel this policy.", + "text": "If the insured building has been physically altered in such a manner that it is no longer eligible for flood insurance coverage, we will cancel this policy.", + "enumerated": true, + "marker": "a." + }, + { + "self_ref": "#/texts/615", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 364.50864, + "t": 747.0041999999999, + "r": 571.4683379999994, + "b": 691.2225608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 77 + ] + } + ], + "orig": "of this policy and the applicable rules and regulations of the NFIP.", + "text": "of this policy and the applicable rules and regulations of the NFIP.", + "level": 1 + }, + { + "self_ref": "#/texts/616", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 315.0, + "t": 680.7552, + "r": 470.90825549999926, + "b": 671.5311562289562, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 34 + ] + } + ], + "orig": "E. Non-Renewal of the Policy by Us", + "text": "E. Non-Renewal of the Policy by Us", + "level": 1 + }, + { + "self_ref": "#/texts/617", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 315.0, + "t": 662.9122, + "r": 457.9302599999994, + "b": 654.1758323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 35 + ] + } + ], + "orig": "Your policy will not be renewed if:", + "text": "Your policy will not be renewed if:" + }, + { + "self_ref": "#/texts/618", + "parent": { + "$ref": "#/groups/76" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 328.5, + "t": 646.3122, + "r": 569.9558699999997, + "b": 611.5758323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 116 + ] + } + ], + "orig": "1. The community where your insured property is located is suspended or stops participating in the NFIP;", + "text": "The community where your insured property is located is suspended or stops participating in the NFIP;", + "enumerated": true, + "marker": "1." + }, + { + "self_ref": "#/texts/619", + "parent": { + "$ref": "#/groups/76" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 76.5, + "t": 598.9001999999999, + "r": 301.4739539999999, + "b": 523.1205608017816, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 134 + ] + } + ], + "orig": "b. If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the terms and conditions", + "text": "If your policy is cancelled for this reason, you may be entitled to a partial refund of premium under the terms and conditions", + "enumerated": true, + "marker": "b." + }, + { + "self_ref": "#/texts/620", + "parent": { + "$ref": "#/groups/76" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 328.5, + "t": 602.8122, + "r": 569.9628000000007, + "b": 581.0758323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 76 + ] + } + ], + "orig": "2. Your building is otherwise ineligible for flood insurance under the Act;", + "text": "Your building is otherwise ineligible for flood insurance under the Act;", + "enumerated": true, + "marker": "2." + }, + { + "self_ref": "#/texts/621", + "parent": { + "$ref": "#/groups/76" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 328.5, + "t": 572.3122, + "r": 569.9875500000007, + "b": 537.5758323851203, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 139 + ] + } + ], + "orig": "3. You have failed to provide the information we requested for the purpose of rating the policy within the required deadline.", + "text": "You have failed to provide the information we requested for the purpose of rating the policy within the required deadline.", + "enumerated": true, + "marker": "3." + }, + { + "self_ref": "#/texts/622", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 233.7581, + "t": 500.5982, + "r": 378.2442000000003, + "b": 491.0323927194861, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 25 + ] + } + ], + "orig": "IX. LIBERALIZATION CLAUSE", + "text": "IX. LIBERALIZATION CLAUSE", + "level": 1 + }, + { + "self_ref": "#/texts/623", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 45.0, + "t": 468.91220000000004, + "r": 300.00618000000014, + "b": 421.1758323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 232 + ] + }, + { + "page_no": 32, + "bbox": { + "l": 315.0027, + "t": 468.91220000000004, + "r": 569.9781900000004, + "b": 434.1758323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 233, + 374 + ] + } + ], + "orig": "If we make a change that broadens your coverage under this edition of our policy, but does not require any additional premium, then that change will automatically apply to your insurance as of the date we implement the change, provided that this implementation date falls within 60 days before or during the policy term stated on the Declarations Page.", + "text": "If we make a change that broadens your coverage under this edition of our policy, but does not require any additional premium, then that change will automatically apply to your insurance as of the date we implement the change, provided that this implementation date falls within 60 days before or during the policy term stated on the Declarations Page." + }, + { + "self_ref": "#/texts/624", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 245.3414, + "t": 397.9982, + "r": 366.65930000000003, + "b": 388.4323927194861, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 19 + ] + } + ], + "orig": "X. WHAT LAW GOVERNS", + "text": "X. WHAT LAW GOVERNS", + "level": 1 + }, + { + "self_ref": "#/texts/625", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 45.0, + "t": 366.3122, + "r": 299.9507400000003, + "b": 331.57583238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 186 + ] + }, + { + "page_no": 32, + "bbox": { + "l": 315.0027, + "t": 366.3122, + "r": 569.9930399999996, + "b": 331.57583238512035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 187, + 328 + ] + } + ], + "orig": "This policy and all disputes arising from the insurer's policy issuance, policy administration, or the handling of any claim under the policy are governed exclusively by the flood insurance regulations issued by FEMA, the National Flood Insurance Act of 1968, as amended (42 U.S.C. 4001, et seq.), and Federal common law.", + "text": "This policy and all disputes arising from the insurer's policy issuance, policy administration, or the handling of any claim under the policy are governed exclusively by the flood insurance regulations issued by FEMA, the National Flood Insurance Act of 1968, as amended (42 U.S.C. 4001, et seq.), and Federal common law." + }, + { + "self_ref": "#/texts/626", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 45.0, + "t": 287.7122, + "r": 485.61929999999927, + "b": 278.9758323851204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 100 + ] + } + ], + "orig": "In Witness Whereof, we have signed this policy below and hereby enter into this Insurance Agreement.", + "text": "In Witness Whereof, we have signed this policy below and hereby enter into this Insurance Agreement." + }, + { + "self_ref": "#/texts/627", + "parent": { + "$ref": "#/groups/77" + }, + "children": [], + "content_layer": "body", + "label": "caption", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 45.0, + "t": 222.61220000000003, + "r": 251.28828000000033, + "b": 201.87583238512036, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 78 + ] + } + ], + "orig": "Deputy Associate Administrator Federal Insurance and Mitigation Administration", + "text": "Deputy Associate Administrator Federal Insurance and Mitigation Administration" + }, + { + "self_ref": "#/texts/628", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 45.0, + "t": 36.13409999999999, + "r": 157.2363, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "NFIP DWELLING FORM SFIP", + "text": "NFIP DWELLING FORM SFIP" + }, + { + "self_ref": "#/texts/629", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 506.25, + "t": 36.13409999999999, + "r": 566.9946000000001, + "b": 28.2277767676768, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "PAGE 30 OF 30", + "text": "PAGE 30 OF 30" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "picture", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 44.505882263183594, + "t": 492.4716796875, + "r": 217.3815155029297, + "b": 431.4029541015625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "picture", + "prov": [ + { + "page_no": 32, + "bbox": { + "l": 55.4355354309082, + "t": 267.0526123046875, + "r": 217.80780029296875, + "b": 230.1185302734375, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [], + "key_value_items": [], + "form_items": [], + "pages": { + "1": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 1 + }, + "2": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 2 + }, + "3": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 3 + }, + "4": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 4 + }, + "5": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 5 + }, + "6": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 6 + }, + "7": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 7 + }, + "8": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 8 + }, + "9": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 9 + }, + "10": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 10 + }, + "11": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 11 + }, + "12": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 12 + }, + "13": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 13 + }, + "14": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 14 + }, + "15": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 15 + }, + "16": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 16 + }, + "17": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 17 + }, + "18": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 18 + }, + "19": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 19 + }, + "20": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 20 + }, + "21": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 21 + }, + "22": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 22 + }, + "23": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 23 + }, + "24": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 24 + }, + "25": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 25 + }, + "26": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 26 + }, + "27": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 27 + }, + "28": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 28 + }, + "29": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 29 + }, + "30": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 30 + }, + "31": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 31 + }, + "32": { + "size": { + "width": 612.0, + "height": 792.0 + }, + "page_no": 32 + } + } + } + }, + "model": "docling" +} diff --git a/examples/insurance-claims-agent/verified-run/raw/review-completion.json b/examples/insurance-claims-agent/verified-run/raw/review-completion.json new file mode 100644 index 00000000..3566eff2 --- /dev/null +++ b/examples/insurance-claims-agent/verified-run/raw/review-completion.json @@ -0,0 +1,10 @@ +{ + "model": "Qwen/Qwen3.5-4B:no-spec", + "text": "\n\n\n\n```json\n{\n \"route\": \"scope_review_required\",\n \"headline\": \"FEMA Appeal Decision B8: Debris Removal Scope and Price Verification for July 2019 Flood Loss\",\n \"appeal_summary\": {\n \"proof_of_loss_amount\": 182552.0,\n \"removal_estimate\": 49500.0,\n \"barge_estimate\": 181832.94,\n \"debris_cubic_yards_min\": 12,\n \"debris_cubic_yards_max\": 15\n },\n \"decision\": {\n \"covered_scope\": \"Labor and equipment usage to remove 12 to 15 cubic yards of flood-borne stones from underneath the insured building to the area around the perimeter of the building.\",\n \"excluded_scope\": \"Disposal costs, yard work, carting debris from the perimeter into a barge, barge transportation, handling, and disposal of non-owned debris.\",\n \"evidence_needed\": \"Additional evidence that the contractor's estimated dollar amount is limited strictly to the covered scope of work (labor and equipment under the building). The $3,564 per cubic yard quote requires validation against other estimates.\",\n \"prior_claim_check\": \"Verify documentation in the file for previous claims filed on May 20, 2019, May 29, 2019, and June 11, 2019, to ensure no payment overlap occurred for debris removal from the same area before the July 2019 event.\"\n },\n \"findings\": [\n {\n \"category\": \"covered_removal\",\n \"severity\": \"high\",\n \"title\": \"Coverage Confirmed for Under-Building Debris Removal\",\n \"evidence\": \"FEMA affirms SFIP covers the expense to remove non-owned flood debris on or in insured property, specifically labor and equipment usage to remove 12 to 15 cubic yards of stones from underneath the building to the perimeter.\",\n \"sources\": [\n \"appeal_decision\"\n ]\n },\n {\n \"category\": \"excluded_transport\",\n \"severity\": \"high\",\n \"title\": \"Exclusion of Yard Work and Transportation Costs\",\n \"evidence\": \"The SFIP does not cover the expense to dispose non-owned debris, nor does it cover increased costs to remove debris in the yard or transport it by barge for further handling and disposal.\",\n \"sources\": [\n \"appeal_decision\"\n ]\n },\n {\n \"category\": \"price_support\",\n \"severity\": \"medium\",\n \"title\": \"Requirement for Reasonable and Customary Pricing Evidence\",\n \"evidence\": \"The policyholder must provide proof of repairs and price from previous flood losses related to removing stones and debris from underneath the building to validate the quoted price of $3,564 per cubic yard.\",\n \"sources\": [\n \"appeal_decision\"\n ]\n },\n {\n \"category\": \"prior_claim_overlap\",\n \"severity\": \"high\",\n \"title\": \"Verification of Prior Debris Removal Payments\",\n \"evidence\": \"Policyholder has received payments for similar losses in May and June 2019; insurer must verify if debris removal for the same area was performed and paid for prior to the July 2019 flood event to prevent double payment.\",\n \"sources\": [\n \"appeal_decision\"\n ]\n }\n ],\n \"next_actions\": [\n \"Direct insurer to review proof of loss documentation packet for completeness regarding covered scope only.\",\n \"Require policyholder to submit additional debris removal estimates from different contractors to support the unit price.\",\n \"Instruct insurer to check claim files for May 20, May 29, and June 11, 2019 events to confirm no prior coverage for this specific debris removal task.\",\n \"Exclude all costs associated with barge transportation ($181,832.94) and yard disposal from any potential payment recommendation.\"\n ]\n}\n```", + "finish_reason": "stop", + "usage": { + "prompt_tokens": 5836, + "completion_tokens": 923, + "total_tokens": 6759 + } +} From 7e1b3ac52d3ef3de74271a2eb67ef47cfaf9f7ee Mon Sep 17 00:00:00 2001 From: svonava Date: Sun, 26 Jul 2026 17:18:53 -0700 Subject: [PATCH 4/5] fix(examples): pin the verified FEMA appeal run --- examples/README.md | 2 +- .../insurance_claims/config.py | 2 + .../insurance_claims/evaluate.py | 19 +++++- .../insurance_claims/review.py | 61 ++++++------------- .../tests/test_config.py | 24 ++++++-- .../tests/test_review.py | 48 ++++++++++++--- .../verified-run/README.md | 9 +-- .../verified-run/manifest.json | 52 +++++++++++++++- 8 files changed, 151 insertions(+), 66 deletions(-) diff --git a/examples/README.md b/examples/README.md index 863068eb..1a8669d6 100644 --- a/examples/README.md +++ b/examples/README.md @@ -24,7 +24,7 @@ service keys. | [Vision-first document RAG](./vision-doc-rag) | Retrieving and answering questions over a multi-tenant page corpus by looking at page images (including scanned drawings) with OCR kept out of the score path | `encode`, `chat/completions`, `score` (optional) | GPU SIE deployment required: ColQwen2.5 retriever + Qwen3.5-4B answer model (runs on the generation bundle) | Runnable demo | | [Multi-model contract review with the OpenAI Agents SDK](./contract-review-agent) | Running an OpenAI Agents SDK agent whose every model call (triage, orchestration, vision, OCR, embeddings, rerank, entity extraction, text-to-SQL, reasoning, and a safety guardrail) is served by one SIE cluster, each step on the right catalog model, with per-model observability | `chat/completions`, `encode`, `score`, `extract` | GPU SIE deployment required; standalone `uv` project; real contracts fetched from CUAD (CC BY 4.0) | Runnable demo | | [Turn difficult PDFs into Markdown](./document-to-markdown) | Preserving tables, reading order, headings, and form labels across real financial, academic, and government PDFs | `extract` | SIE endpoint with `docling`; standalone `uv` project; source PDFs fetched at run time | Runnable evaluation example | -| [Review a flood claim packet](./insurance-claims-agent) | Finding an unsigned form and a $400 evidence mismatch across a policy, estimate, inventory, and damage photograph | `extract`, `score`, `chat/completions` | GPU SIE deployment; standalone `uv` project; public FEMA documents and public-domain photograph fetched at run time | Runnable agent example | +| [Review a published flood-insurance appeal](./insurance-claims-agent) | Separating FEMA's covered stone-removal scope from excluded barge, handling, disposal, and yard costs | `extract`, `score`, `chat/completions` | GPU SIE deployment; standalone `uv` project; bundled public FEMA appeal and policy | Runnable agent example | For docs publishing, lead with the quickest runnable demos, then use the benchmark and evaluation examples for deeper technical users. diff --git a/examples/insurance-claims-agent/insurance_claims/config.py b/examples/insurance-claims-agent/insurance_claims/config.py index 63b8af9c..3b40d409 100644 --- a/examples/insurance-claims-agent/insurance_claims/config.py +++ b/examples/insurance-claims-agent/insurance_claims/config.py @@ -106,6 +106,8 @@ def load_config() -> AppConfig: ), sources=tuple(Source(**row) for row in raw["sources"]), ) + + def source_by_slug(config: AppConfig, slug: str) -> Source: for source in config.sources: if source.slug == slug: diff --git a/examples/insurance-claims-agent/insurance_claims/evaluate.py b/examples/insurance-claims-agent/insurance_claims/evaluate.py index 89216ee3..b083ae2c 100644 --- a/examples/insurance-claims-agent/insurance_claims/evaluate.py +++ b/examples/insurance-claims-agent/insurance_claims/evaluate.py @@ -1,6 +1,7 @@ from __future__ import annotations import argparse +import hashlib import json from dataclasses import asdict, dataclass from pathlib import Path @@ -59,8 +60,7 @@ def evaluate_review(review: dict[str, Any]) -> list[Check]: ), Check( "debris-volume", - summary.get("debris_cubic_yards_min") == 12 - and summary.get("debris_cubic_yards_max") == 15, + summary.get("debris_cubic_yards_min") == 12 and summary.get("debris_cubic_yards_max") == 15, f"{summary.get('debris_cubic_yards_min')} to {summary.get('debris_cubic_yards_max')}", ), Check( @@ -114,6 +114,21 @@ def evaluate_run(run_dir: Path) -> bool: + "\n", encoding="utf-8", ) + manifest_path = run_dir / "manifest.json" + if manifest_path.exists(): + manifest = json.loads(manifest_path.read_text(encoding="utf-8")) + manifest["artifacts"] = [ + { + "path": str(path.relative_to(run_dir)), + "sha256": hashlib.sha256(path.read_bytes()).hexdigest(), + } + for path in sorted(run_dir.rglob("*")) + if path.is_file() and path != manifest_path + ] + manifest_path.write_text( + json.dumps(manifest, indent=2) + "\n", + encoding="utf-8", + ) table = Table("Check", "Result", "Detail") for check in checks: table.add_row( diff --git a/examples/insurance-claims-agent/insurance_claims/review.py b/examples/insurance-claims-agent/insurance_claims/review.py index aee3b098..59c8ea05 100644 --- a/examples/insurance-claims-agent/insurance_claims/review.py +++ b/examples/insurance-claims-agent/insurance_claims/review.py @@ -164,11 +164,7 @@ def _parse_document( def chunk_markdown(markdown: str, target_characters: int) -> list[str]: - paragraphs = [ - paragraph.strip() - for paragraph in markdown.split("\n\n") - if paragraph.strip() - ] + paragraphs = [paragraph.strip() for paragraph in markdown.split("\n\n") if paragraph.strip()] chunks: list[str] = [] current: list[str] = [] current_size = 0 @@ -294,10 +290,7 @@ def _final_review( policy_chunks: list[dict[str, Any]], provision_timeout_s: float, ) -> tuple[dict[str, Any], dict[str, Any], float]: - policy_evidence = "\n\n".join( - f"[policy chunk {chunk['chunk_id']}]\n{chunk['text']}" - for chunk in policy_chunks - ) + policy_evidence = "\n\n".join(f"[policy chunk {chunk['chunk_id']}]\n{chunk['text']}" for chunk in policy_chunks) prompt = f""" Summarize FEMA Flood Insurance Appeal Decision B8 as a cited operations review. @@ -351,9 +344,7 @@ def _require_sources() -> None: missing = [source.path for source in config.sources if not source.path.exists()] if missing: names = ", ".join(path.name for path in missing) - raise FileNotFoundError( - f"Missing source files: {names}. Run `uv run fetch-claim-sources` first." - ) + raise FileNotFoundError(f"Missing source files: {names}. Run `uv run fetch-claim-sources` first.") def run_default_stage(run_id: str) -> Path: @@ -404,16 +395,14 @@ def run_default_stage(run_id: str) -> Path: facts_result.get("data", facts_result), ) - policy_chunks, rerank_result, timings["rerank_policy_ms"] = ( - _retrieve_policy( - client, - config.models.rerank, - markdown["policy"], - chunk_characters=config.retrieval.chunk_characters, - candidate_limit=config.retrieval.candidate_chunks, - result_limit=config.retrieval.result_chunks, - provision_timeout_s=config.cluster.provision_timeout_s, - ) + policy_chunks, rerank_result, timings["rerank_policy_ms"] = _retrieve_policy( + client, + config.models.rerank, + markdown["policy"], + chunk_characters=config.retrieval.chunk_characters, + candidate_limit=config.retrieval.candidate_chunks, + result_limit=config.retrieval.result_chunks, + provision_timeout_s=config.cluster.provision_timeout_s, ) _write_json(raw_dir / "policy-rerank.json", rerank_result) _write_json(run_dir / "policy-evidence.json", policy_chunks) @@ -448,19 +437,11 @@ def run_generation_stage(run_id: str) -> Path: markdown_dir = run_dir / "markdown" default_stage_path = run_dir / "default-stage.json" if not default_stage_path.exists(): - raise FileNotFoundError( - f"Missing {default_stage_path}. Run the default stage first." - ) + raise FileNotFoundError(f"Missing {default_stage_path}. Run the default stage first.") default_stage = json.loads(default_stage_path.read_text(encoding="utf-8")) - appeal_markdown = (markdown_dir / "appeal_decision.md").read_text( - encoding="utf-8" - ) - claim_facts = json.loads( - (run_dir / "claim-facts.json").read_text(encoding="utf-8") - ) - policy_chunks = json.loads( - (run_dir / "policy-evidence.json").read_text(encoding="utf-8") - ) + appeal_markdown = (markdown_dir / "appeal_decision.md").read_text(encoding="utf-8") + claim_facts = json.loads((run_dir / "claim-facts.json").read_text(encoding="utf-8")) + policy_chunks = json.loads((run_dir / "policy-evidence.json").read_text(encoding="utf-8")) timings = dict(default_stage["timings_ms"]) client = SIEClient( @@ -501,9 +482,7 @@ def run_generation_stage(run_id: str) -> Path: _write_json(run_dir / "manifest.json", manifest) _write_json( run_dir / "source-manifest.json", - json.loads( - (DATA_DIR / "source-manifest.json").read_text(encoding="utf-8") - ), + json.loads((DATA_DIR / "source-manifest.json").read_text(encoding="utf-8")), ) table = Table("Model call", "Latency") @@ -523,9 +502,7 @@ def run_review(run_id: str | None = None) -> Path: def main() -> None: - parser = argparse.ArgumentParser( - description="Review FEMA Flood Insurance Appeal Decision B8 through SIE" - ) + parser = argparse.ArgumentParser(description="Review FEMA Flood Insurance Appeal Decision B8 through SIE") parser.add_argument("--run-id") parser.add_argument( "--stage", @@ -534,9 +511,7 @@ def main() -> None: help="Run both stages, or release the GPU between the default and generation bundles", ) args = parser.parse_args() - selected_run_id = args.run_id or datetime.now(UTC).strftime( - "%Y%m%dT%H%M%SZ" - ) + selected_run_id = args.run_id or datetime.now(UTC).strftime("%Y%m%dT%H%M%SZ") if args.stage == "default": run_default_stage(selected_run_id) elif args.stage == "generation": diff --git a/examples/insurance-claims-agent/tests/test_config.py b/examples/insurance-claims-agent/tests/test_config.py index e8ec0c37..bbdc6fd6 100644 --- a/examples/insurance-claims-agent/tests/test_config.py +++ b/examples/insurance-claims-agent/tests/test_config.py @@ -1,6 +1,9 @@ from __future__ import annotations -from insurance_claims.config import load_config +import hashlib +import json + +from insurance_claims.config import ROOT, load_config def test_source_set_uses_public_fema_documents() -> None: @@ -10,11 +13,22 @@ def test_source_set_uses_public_fema_documents() -> None: "nfip-appeal-b8", "sfip-dwelling-policy", ] - assert all( - source.rights.startswith("U.S. federal government work") - for source in config.sources - ) + assert all(source.rights.startswith("U.S. federal government work") for source in config.sources) assert config.models.parse == "docling" assert config.models.extract == "fastino/gliner2-large-v1" assert config.models.rerank == "BAAI/bge-reranker-v2-m3" assert config.models.review == "Qwen/Qwen3.5-4B:no-spec" + + +def test_bundled_sources_match_the_verified_source_manifest() -> None: + config = load_config() + manifest_path = ROOT / "verified-run" / "source-manifest.json" + manifest = json.loads(manifest_path.read_text(encoding="utf-8")) + expected = {row["slug"]: row for row in manifest["sources"]} + + assert set(expected) == {source.slug for source in config.sources} + for source in config.sources: + assert source.fixture_path is not None + payload = source.fixture_path.read_bytes() + assert len(payload) == expected[source.slug]["bytes"] + assert hashlib.sha256(payload).hexdigest() == expected[source.slug]["sha256"] diff --git a/examples/insurance-claims-agent/tests/test_review.py b/examples/insurance-claims-agent/tests/test_review.py index 27ff86e0..88e68471 100644 --- a/examples/insurance-claims-agent/tests/test_review.py +++ b/examples/insurance-claims-agent/tests/test_review.py @@ -1,5 +1,10 @@ from __future__ import annotations +import hashlib +import json +from dataclasses import asdict +from pathlib import Path + from insurance_claims.evaluate import evaluate_review from insurance_claims.review import ( _extract_claim_facts, @@ -7,6 +12,9 @@ chunk_markdown, ) +ROOT = Path(__file__).resolve().parents[1] +VERIFIED_RUN = ROOT / "verified-run" + class FakeExtractClient: def __init__(self) -> None: @@ -53,9 +61,9 @@ def test_claim_fact_extraction_passes_domain_labels() -> None: def test_review_json_accepts_fenced_model_output() -> None: - assert _json_object_from_text( - '```json\n{"route": "scope_review_required"}\n```' - ) == {"route": "scope_review_required"} + assert _json_object_from_text('```json\n{"route": "scope_review_required"}\n```') == { + "route": "scope_review_required" + } def test_evaluation_accepts_published_appeal_result() -> None: @@ -69,13 +77,8 @@ def test_evaluation_accepts_published_appeal_result() -> None: "debris_cubic_yards_max": 15, }, "decision": { - "covered_scope": ( - "Remove flood-borne stones from underneath the insured " - "building to its perimeter." - ), - "excluded_scope": ( - "Barge transport, handling, disposal, and yard removal." - ), + "covered_scope": ("Remove flood-borne stones from underneath the insured building to its perimeter."), + "excluded_scope": ("Barge transport, handling, disposal, and yard removal."), "evidence_needed": "Other contractor estimates.", "prior_claim_check": "Proof of repairs from previous claims.", }, @@ -88,3 +91,28 @@ def test_evaluation_accepts_published_appeal_result() -> None: } assert all(check.passed for check in evaluate_review(review)) + + +def test_verified_evaluation_recomputes_from_the_recorded_review() -> None: + review = json.loads((VERIFIED_RUN / "review.json").read_text(encoding="utf-8")) + recorded = json.loads((VERIFIED_RUN / "evaluation.json").read_text(encoding="utf-8")) + checks = evaluate_review(review) + + assert recorded == { + "passed": all(check.passed for check in checks), + "checks": [asdict(check) for check in checks], + } + + +def test_verified_manifest_pins_every_recorded_artifact() -> None: + manifest = json.loads((VERIFIED_RUN / "manifest.json").read_text(encoding="utf-8")) + expected_paths = { + str(path.relative_to(VERIFIED_RUN)) + for path in VERIFIED_RUN.rglob("*") + if path.is_file() and path.name not in {"README.md", "manifest.json"} + } + artifacts = {entry["path"]: entry["sha256"] for entry in manifest["artifacts"]} + + assert set(artifacts) == expected_paths + for path, expected_hash in artifacts.items(): + assert hashlib.sha256((VERIFIED_RUN / path).read_bytes()).hexdigest() == expected_hash diff --git a/examples/insurance-claims-agent/verified-run/README.md b/examples/insurance-claims-agent/verified-run/README.md index 36a84a4b..973a0ff5 100644 --- a/examples/insurance-claims-agent/verified-run/README.md +++ b/examples/insurance-claims-agent/verified-run/README.md @@ -12,10 +12,11 @@ Decision B8 and the Standard Flood Insurance Policy Dwelling Form. The run used `docling`, `fastino/gliner2-large-v1`, `BAAI/bge-reranker-v2-m3`, and `Qwen/Qwen3.5-4B:no-spec`. -`manifest.json` records the models and timings. `source-manifest.json` pins the -publisher URLs and SHA-256 hashes. `markdown/` and `raw/` preserve every parsed -document and model response. The other files keep the extracted facts, reranked -policy passages, structured review, and deterministic evaluation. +`manifest.json` records the models, timings, and SHA-256 hash of every recorded +artifact. `source-manifest.json` pins the publisher URLs and source hashes. +`markdown/` and `raw/` preserve every parsed document and model response. The +other files keep the extracted facts, reranked policy passages, structured +review, and deterministic evaluation. The example also includes the two downloaded FEMA PDFs, so the verified run can be reproduced if a publisher URL changes. diff --git a/examples/insurance-claims-agent/verified-run/manifest.json b/examples/insurance-claims-agent/verified-run/manifest.json index 446d1ca9..4ddafc6d 100644 --- a/examples/insurance-claims-agent/verified-run/manifest.json +++ b/examples/insurance-claims-agent/verified-run/manifest.json @@ -20,5 +20,55 @@ "synthesize_review_ms": 151737.2 }, "source_manifest": "source-manifest.json", - "review": "review.json" + "review": "review.json", + "artifacts": [ + { + "path": "claim-facts.json", + "sha256": "17afa9d8ec7c58087c156dcf732648ba9afc2b5d58e70f09b151cb2a81a5a397" + }, + { + "path": "evaluation.json", + "sha256": "1c54c3f1e25ccfa77de7943812b6f4ee91e9df1ebd1361c5e9f68b9dc8de8a17" + }, + { + "path": "markdown/appeal_decision.md", + "sha256": "fc81a335328381f9fff985167a859b58957a8b22e09ff19c16545be23034179d" + }, + { + "path": "markdown/policy.md", + "sha256": "2deb8ba947a79bd3158956e97e3292a842579dbda0601512e8a72bf660082686" + }, + { + "path": "policy-evidence.json", + "sha256": "0380f44cb3e8e07fccb4b0db5b964439ef5f7cc051a9ad45594006fd68f08db7" + }, + { + "path": "raw/appeal_decision-parse.json", + "sha256": "9b2a00510f652b2ee45bb9e0c2adf5c9934fc72e44d62c7b30ff5e2133509069" + }, + { + "path": "raw/claim-facts.json", + "sha256": "17afa9d8ec7c58087c156dcf732648ba9afc2b5d58e70f09b151cb2a81a5a397" + }, + { + "path": "raw/policy-parse.json", + "sha256": "93ad890c597a82146a8200584241e291c25a70c6e9e4b709e14d7bf8a8222b76" + }, + { + "path": "raw/policy-rerank.json", + "sha256": "adb807da7e89c7901004042c8ef5f2342f3133f5f868b097a521fa9bcdc13456" + }, + { + "path": "raw/review-completion.json", + "sha256": "ffa30e9d6e40e411a25591bc289f9cf29902c5a1c63c7f2f56975bd77fe6d620" + }, + { + "path": "review.json", + "sha256": "d26b0fe8aa8ee85c554ff3f2ca7fc48865458b79897b05906bf6b8e7e2be3987" + }, + { + "path": "source-manifest.json", + "sha256": "9d8892b929c8552a0b34a96421bb712ffbe57bb828363d030989438b1b06249e" + } + ] } From 7f50fa377ff17a4064eabda129253a1be1f6068a Mon Sep 17 00:00:00 2001 From: svonava Date: Sun, 26 Jul 2026 22:13:26 -0700 Subject: [PATCH 5/5] chore: scope CodeRabbit to examples --- .coderabbit.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 00000000..1857e4b1 --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json + +reviews: + auto_review: + enabled: true + drafts: false + path_filters: + - "examples/**" + - "!examples/**/data/**" + - "!examples/**/fixtures/**" + - "examples/**/fixtures/SOURCES.md" + - "!examples/**/verified-run/**" + - "examples/**/verified-run/README.md" + - "!examples/**/uv.lock" + path_instructions: + - path: "examples/**" + instructions: | + Review runnable source, tests, configuration, and documentation. + Check that commands match the implementation and that tests cover failure paths. + Flag client-side model-name translation and undocumented synthetic results.