diff --git a/.github/scripts/stamp-coverage-chapter.awk b/.github/scripts/stamp-coverage-chapter.awk new file mode 100644 index 000000000..37c3a6d8e --- /dev/null +++ b/.github/scripts/stamp-coverage-chapter.awk @@ -0,0 +1,30 @@ +# Replace the block between COVERAGE_STATUS_BEGIN/END markers in the book's +# code-coverage chapter with a fresh status line. Driven by `make coverage`. +# Required vars: commit, ts, covered, link. + +// { + print "" + print "**Last collected:** " ts " for commit `" commit "` — **" covered " line coverage**." + print "" + print "[Open the report](" link ")" + in_block = 1 + stamped = 1 + next +} + +// { + print "" + in_block = 0 + next +} + +!in_block { print } + +# A lone BEGIN marker would silently swallow the rest of the chapter, and a +# chapter without markers would pass through unstamped; fail loudly instead. +END { + if (in_block || !stamped) { + print "error: COVERAGE_STATUS_BEGIN/END marker pair not found" > "/dev/stderr" + exit 1 + } +} diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 3240e5da3..35863c04d 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -28,6 +28,16 @@ jobs: - name: Install and test the mdBook run: make test-book + - name: Verify coverage chapter is in default state + # Absence of the awk-generated stamp marker. Decouples CI from the + # exact default-block wording so the latter can be reworded freely. + run: | + if grep -q "^\*\*Last collected:\*\*" \ + book/src/developer_guide/coverage.md; then + echo "::error::book/src/developer_guide/coverage.md is stamped with local coverage; revert it before committing." + exit 1 + fi + - name: Build book run: mdbook build book diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml new file mode 100644 index 000000000..222249190 --- /dev/null +++ b/.github/workflows/code-coverage.yml @@ -0,0 +1,164 @@ +# Label-gated coverage workflow (`measure code coverage`). Uses +# `pull_request_target` so the run holds a write token for publishing to +# gh-pages — which means it must never leak that token to the PR code it +# builds and tests. Two rules enforce that: +# +# 1. The only trigger type is `labeled`: applying the label approves +# exactly the head commit present at that moment. Later pushes do NOT +# re-fire the workflow; a maintainer must re-apply the label to measure +# a new head, re-establishing trust each time. +# 2. The checkout uses `persist-credentials: false` and no build/test step +# references `secrets`/`github.token`, so the untrusted code under test +# finds no credentials in its environment or in `.git/config`. +# +# One-time setup: create the label and point Settings → Pages at the +# `gh-pages` branch after the first successful run. + +name: Code coverage + +on: + pull_request_target: + branches: [main] + types: [labeled] + +concurrency: + group: code-coverage-${{ github.event.pull_request.number }} + cancel-in-progress: true + +permissions: + contents: write # push to gh-pages + pull-requests: write # comment on PR + +env: + CARGO_TERM_COLOR: always + +jobs: + coverage: + name: Measure and publish coverage + if: github.event.label.name == 'measure code coverage' + runs-on: ubuntu-24.04 + timeout-minutes: 90 + steps: + - name: Checkout PR head + uses: actions/checkout@v6 + with: + ref: ${{ github.event.pull_request.head.sha }} + submodules: recursive + persist-credentials: false + + - name: Set up Rust toolchain + uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + rustflags: "" + components: llvm-tools-preview + + - name: Install solc + uses: ./.github/actions/get-solc + + - name: Install Geth + run: | + sudo add-apt-repository -y ppa:ethereum/ethereum + sudo apt update + sudo apt install -y ethereum + + - name: Download LLVM + uses: ./.github/actions/get-llvm + with: + target: x86_64-unknown-linux-gnu + + - name: Set LLVM environment variables + run: | + echo "LLVM_SYS_221_PREFIX=$(pwd)/llvm-x86_64-unknown-linux-gnu" >> $GITHUB_ENV + + - name: Install cargo-llvm-cov + uses: taiki-e/install-action@v2 + with: + tool: cargo-llvm-cov + + - name: Generate HTML coverage report + # Mirrors `make coverage`. `--ignore-run-fail` keeps partial + # coverage on test-binary non-zero exit. Tests spawn `resolc` as a + # subprocess; resolving it from the instrumented target directory + # makes those invocations contribute coverage. + run: | + cargo llvm-cov clean --workspace + rm -rf target/llvm-cov + export PATH="$PWD/target/llvm-cov-target/debug:$PATH" + cargo llvm-cov --workspace \ + --exclude revive-llvm-builder \ + --all-targets \ + --locked \ + --ignore-run-fail \ + --html \ + --output-dir target/llvm-cov + + - name: Generate coverage summary + run: | + cargo llvm-cov report --summary-only \ + | tee target/llvm-cov/summary.txt + + - name: Upload coverage HTML as workflow artifact + if: success() + uses: actions/upload-artifact@v4 + with: + name: coverage-html-pr-${{ github.event.pull_request.number }} + path: target/llvm-cov/html + retention-days: 30 + + - name: Publish coverage to gh-pages + if: success() + uses: peaceiris/actions-gh-pages@v4 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: target/llvm-cov/html + destination_dir: pr-${{ github.event.pull_request.number }} + # Preserve reports from other PRs already on the branch. + keep_files: true + commit_message: "coverage: PR #${{ github.event.pull_request.number }} @ ${{ github.event.pull_request.head.sha }}" + user_name: github-actions[bot] + user_email: 41898282+github-actions[bot]@users.noreply.github.com + + - name: Comment coverage report URL on PR + if: success() + uses: actions/github-script@v7 + with: + script: | + const fs = require('fs'); + const summary = fs.readFileSync('target/llvm-cov/summary.txt', 'utf8').trim(); + const owner = context.repo.owner; + const repo = context.repo.repo; + const prNumber = context.issue.number; + const sha = context.payload.pull_request.head.sha.substring(0, 8); + const url = `https://${owner}.github.io/${repo}/pr-${prNumber}/`; + const marker = ''; + const body = [ + marker, + `### Code coverage`, + ``, + `Report for \`${sha}\` is available at: ${url}`, + ``, + `
Summary`, + ``, + `\`\`\``, + summary, + `\`\`\``, + ``, + `
`, + ``, + `_Workflow run: [#${context.runId}](${context.serverUrl}/${owner}/${repo}/actions/runs/${context.runId})_`, + ].join('\n'); + + // Update prior bot comment in place rather than spamming. + const { data: comments } = await github.rest.issues.listComments({ + owner, repo, issue_number: prNumber, per_page: 100, + }); + const existing = comments.find(c => c.body && c.body.includes(marker)); + if (existing) { + await github.rest.issues.updateComment({ + owner, repo, comment_id: existing.id, body, + }); + } else { + await github.rest.issues.createComment({ + owner, repo, issue_number: prNumber, body, + }); + } diff --git a/.gitignore b/.gitignore index 040ca8ef1..85d1298c5 100644 --- a/.gitignore +++ b/.gitignore @@ -23,4 +23,7 @@ playwright-report .cache emsdk docs-tmp +# Coverage HTML staged by `make coverage` and its rendered copy under docs/. +/book/src/coverage/ +/docs/coverage/ workdir diff --git a/Makefile b/Makefile index ff43d02e3..3f740fe11 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ install-wasm \ install-llvm-builder \ install-llvm \ + install-llvm-coverage \ + install-cargo-llvm-cov \ install-revive-runner \ format \ clippy \ @@ -19,6 +21,8 @@ test-wasm \ test-llvm-builder \ test-book \ + coverage \ + coverage-reset \ bench \ bench-pvm \ bench-evm \ @@ -45,6 +49,14 @@ install-llvm: install-llvm-builder git submodule update --init --recursive --depth 1 revive-llvm build --llvm-projects lld --llvm-projects clang +# Build LLVM with `LLVM_BUILD_INSTRUMENTED_COVERAGE=On` so `llvm-cov` +# reports cover C++ as well as Rust. Shares the `target-llvm//` +# tree with `install-llvm`; run `revive-llvm clean` between variants. +# `JOBS=N` caps thread count via CMAKE_BUILD_PARALLEL_LEVEL. +install-llvm-coverage: install-llvm-builder + git submodule update --init --recursive --depth 1 + CMAKE_BUILD_PARALLEL_LEVEL=$(JOBS) revive-llvm build --llvm-projects lld --llvm-projects clang --enable-coverage + install-revive-runner: cargo install --locked --force --path crates/runner --no-default-features @@ -87,10 +99,57 @@ test-llvm-builder: @echo "warning: the llvm-builder tests will take many hours" cargo test --package revive-llvm-builder -- --test-threads=1 +install-cargo-llvm-cov: + @command -v cargo-llvm-cov >/dev/null 2>&1 || cargo install cargo-llvm-cov --locked + @rustup component add llvm-tools-preview >/dev/null 2>&1 || true + test-book: cargo install mdbook --version 0.5.1 --locked mdbook test book +# Coverage over `test-workspace` (excludes revive-llvm-builder). +# Stages HTML under book/src/coverage/ and stamps the chapter in place; +# revert with `make coverage-reset`. +coverage: install install-cargo-llvm-cov + cargo install mdbook --version 0.5.1 --locked + cargo llvm-cov clean --workspace + rm -rf target/coverage + PATH="$(CURDIR)/target/llvm-cov-target/debug:$$PATH" \ + cargo llvm-cov --workspace \ + --exclude revive-llvm-builder \ + --all-targets \ + --locked \ + --ignore-run-fail \ + --html \ + --output-dir target/coverage + cargo llvm-cov report --summary-only > target/coverage/summary.txt + rm -rf book/src/coverage + mkdir -p book/src/coverage + mv target/coverage/html book/src/coverage/html + mv target/coverage/summary.txt book/src/coverage/summary.txt + @COMMIT=$$(git rev-parse --short HEAD 2>/dev/null || echo unknown) ; \ + TIMESTAMP=$$(date -u +"%Y-%m-%dT%H:%M:%SZ") ; \ + COVERED=$$(awk '/^TOTAL/ { print $$10; exit }' book/src/coverage/summary.txt) ; \ + [ -n "$$COVERED" ] || COVERED=N/A ; \ + awk -v commit="$$COMMIT" -v ts="$$TIMESTAMP" -v covered="$$COVERED" \ + -v link="../coverage/html/index.html" \ + -f .github/scripts/stamp-coverage-chapter.awk \ + book/src/developer_guide/coverage.md \ + > book/src/developer_guide/coverage.md.new + mv book/src/developer_guide/coverage.md.new book/src/developer_guide/coverage.md + mdbook build book + @echo + @echo "Coverage collected. Run 'make book' to view." + @echo "Run 'make coverage-reset' before committing." + +# Restore the committed chapter and drop the staged HTML. +coverage-reset: + cargo install mdbook --version 0.5.1 --locked + git checkout -- book/src/developer_guide/coverage.md + rm -rf book/src/coverage + mdbook build book + @echo "Coverage chapter restored." + bench: install-bin cargo criterion --all --all-features --message-format=json \ | criterion-table > crates/benchmarks/BENCHMARKS.md diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index 7d5382542..2ec2e3b8d 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -17,6 +17,7 @@ - [IR reference](./developer_guide/newyork_ir.md) - [PVM and the pallet-revive runtime target](./developer_guide/target.md) - [Testing strategy](./developer_guide/testing.md) + - [Code coverage](./developer_guide/coverage.md) - [Cross compilation](./developer_guide/cross_compilation.md) - [FAQ](./faq.md) - [Roadmap and Vision](./roadmap.md) diff --git a/book/src/developer_guide/coverage.md b/book/src/developer_guide/coverage.md new file mode 100644 index 000000000..abe947b09 --- /dev/null +++ b/book/src/developer_guide/coverage.md @@ -0,0 +1,58 @@ +# Code coverage + +Revive measures Rust line and branch coverage with +[`cargo-llvm-cov`](https://github.com/taiki-e/cargo-llvm-cov) over the same +crate set as `make test-workspace` (the workspace minus +`revive-llvm-builder`). + +Two ways to obtain a report: + +1. **Locally:** `make coverage` (described below). +2. **Per PR:** apply the `measure code coverage` label. The workflow at + `.github/workflows/code-coverage.yml` publishes the report to + `https://paritytech.github.io/revive/pr-/` and comments the link on + the PR. Label requires maintainer privileges. + +## Running locally + +```bash +make coverage +``` + +The target: + +1. Builds and tests the workspace under cargo-llvm-cov with + `--ignore-run-fail` so partial coverage lands even when test binaries + exit non-zero. +2. Writes HTML to `target/coverage/html/` and a summary to + `target/coverage/summary.txt`. +3. Stages the HTML under `book/src/coverage/`; mdbook copies it to + `docs/coverage/` during build. +4. Rewrites the **Status** block below in place with the short commit hash, + ISO-8601 UTC timestamp, and total line coverage, then runs + `mdbook build`. + +Prerequisites: + +* `LLVM_SYS_221_PREFIX` exported and pointing at a compatible LLVM build + (same as `make test-workspace`). +* `llvm-tools-preview` rustup component, `cargo-llvm-cov`, and the pinned + `mdbook` version — all installed on demand by the target. + +### Reverting local changes + +`make coverage` modifies `book/src/developer_guide/coverage.md` in place and +stages files under `book/src/coverage/`. To restore the committed state +before pushing: + +```bash +make coverage-reset +``` + +## Status + + +**Last collected:** 2026-07-06T18:46:06Z for commit `0db01dcb` — **62.79% line coverage**. + +[Open the report](../coverage/html/index.html) + diff --git a/crates/llvm-builder/src/platforms/x86_64_linux_musl.rs b/crates/llvm-builder/src/platforms/x86_64_linux_musl.rs index c33c94681..c552695fe 100644 --- a/crates/llvm-builder/src/platforms/x86_64_linux_musl.rs +++ b/crates/llvm-builder/src/platforms/x86_64_linux_musl.rs @@ -70,6 +70,7 @@ pub fn build( musl_target.as_path(), llvm_target_crt.as_path(), ccache_variant, + enable_coverage, )?; build_target( build_type, @@ -166,69 +167,77 @@ fn build_host( musl_target_directory: &Path, crt_target_directory: &Path, ccache_variant: Option, + enable_coverage: bool, ) -> anyhow::Result<()> { - crate::utils::command( - Command::new("cmake") - .args([ - "-S", - source_directory.to_string_lossy().as_ref(), - "-B", - build_directory.to_string_lossy().as_ref(), - "-G", - "Ninja", - format!( - "-DDEFAULT_SYSROOT='{}'", - musl_target_directory.to_string_lossy() - ) - .as_str(), - "-DLINKER_SUPPORTS_COLOR_DIAGNOSTICS=0", - format!( - "-DCMAKE_INSTALL_PREFIX='{}'", - target_directory.to_string_lossy() - ) - .as_str(), - "-DCMAKE_BUILD_TYPE='Release'", - "-DCMAKE_C_COMPILER='clang'", - "-DCMAKE_CXX_COMPILER='clang++'", - "-DCLANG_DEFAULT_CXX_STDLIB='libc++'", - "-DCLANG_DEFAULT_RTLIB='compiler-rt'", - "-DLLVM_DEFAULT_TARGET_TRIPLE='x86_64-pc-linux-musl'", - "-DLLVM_TARGETS_TO_BUILD='X86'", - "-DLLVM_BUILD_TESTS='Off'", - "-DLLVM_BUILD_UTILS='Off'", - "-DLLVM_INCLUDE_TESTS='Off'", - "-DLLVM_INCLUDE_UTILS='Off'", - "-DLLVM_ENABLE_PROJECTS='clang;lld'", - "-DLLVM_ENABLE_RUNTIMES='compiler-rt;libcxx;libcxxabi;libunwind'", - "-DLIBCXX_CXX_ABI='libcxxabi'", - "-DLIBCXX_HAS_MUSL_LIBC='On'", - "-DLIBCXX_ENABLE_SHARED='Off'", - "-DLIBCXX_ENABLE_STATIC='On'", - "-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY='On'", - "-DLIBCXXABI_ENABLE_SHARED='Off'", - "-DLIBCXXABI_ENABLE_STATIC='On'", - "-DLIBCXXABI_ENABLE_STATIC_UNWINDER='On'", - "-DLIBCXXABI_USE_LLVM_UNWINDER='On'", - "-DLIBCXXABI_USE_COMPILER_RT='On'", - "-DLIBUNWIND_ENABLE_STATIC='On'", - "-DLIBUNWIND_ENABLE_SHARED='Off'", - "-DCOMPILER_RT_BUILD_CRT='On'", - "-DCOMPILER_RT_BUILD_SANITIZERS='Off'", - "-DCOMPILER_RT_BUILD_XRAY='Off'", - "-DCOMPILER_RT_BUILD_LIBFUZZER='Off'", - "-DCOMPILER_RT_BUILD_PROFILE='On'", - "-DCOMPILER_RT_BUILD_MEMPROF='Off'", - "-DCOMPILER_RT_BUILD_ORC='Off'", - "-DCOMPILER_RT_DEFAULT_TARGET_ARCH='x86_64'", - "-DLIBCLANG_BUILD_STATIC='On'", - "-DBUILD_SHARED_LIBS='Off'", - ]) - .args(crate::platforms::shared::SHARED_BUILD_OPTS) - .args(crate::platforms::shared::shared_build_opts_ccache( - ccache_variant, - )), - "LLVM host building cmake", - )?; + let mut cmake_command = Command::new("cmake"); + cmake_command + .args([ + "-S", + source_directory.to_string_lossy().as_ref(), + "-B", + build_directory.to_string_lossy().as_ref(), + "-G", + "Ninja", + format!( + "-DDEFAULT_SYSROOT='{}'", + musl_target_directory.to_string_lossy() + ) + .as_str(), + "-DLINKER_SUPPORTS_COLOR_DIAGNOSTICS=0", + format!( + "-DCMAKE_INSTALL_PREFIX='{}'", + target_directory.to_string_lossy() + ) + .as_str(), + "-DCMAKE_BUILD_TYPE='Release'", + "-DCMAKE_C_COMPILER='clang'", + "-DCMAKE_CXX_COMPILER='clang++'", + "-DCLANG_DEFAULT_CXX_STDLIB='libc++'", + "-DCLANG_DEFAULT_RTLIB='compiler-rt'", + "-DLLVM_DEFAULT_TARGET_TRIPLE='x86_64-pc-linux-musl'", + "-DLLVM_TARGETS_TO_BUILD='X86'", + "-DLLVM_BUILD_TESTS='Off'", + "-DLLVM_BUILD_UTILS='Off'", + "-DLLVM_INCLUDE_TESTS='Off'", + "-DLLVM_INCLUDE_UTILS='Off'", + "-DLLVM_ENABLE_PROJECTS='clang;lld'", + "-DLLVM_ENABLE_RUNTIMES='compiler-rt;libcxx;libcxxabi;libunwind'", + "-DLIBCXX_CXX_ABI='libcxxabi'", + "-DLIBCXX_HAS_MUSL_LIBC='On'", + "-DLIBCXX_ENABLE_SHARED='Off'", + "-DLIBCXX_ENABLE_STATIC='On'", + "-DLIBCXX_ENABLE_STATIC_ABI_LIBRARY='On'", + "-DLIBCXXABI_ENABLE_SHARED='Off'", + "-DLIBCXXABI_ENABLE_STATIC='On'", + "-DLIBCXXABI_ENABLE_STATIC_UNWINDER='On'", + "-DLIBCXXABI_USE_LLVM_UNWINDER='On'", + "-DLIBCXXABI_USE_COMPILER_RT='On'", + "-DLIBUNWIND_ENABLE_STATIC='On'", + "-DLIBUNWIND_ENABLE_SHARED='Off'", + "-DCOMPILER_RT_BUILD_CRT='On'", + "-DCOMPILER_RT_BUILD_SANITIZERS='Off'", + "-DCOMPILER_RT_BUILD_XRAY='Off'", + "-DCOMPILER_RT_BUILD_LIBFUZZER='Off'", + "-DCOMPILER_RT_BUILD_PROFILE='On'", + "-DCOMPILER_RT_BUILD_MEMPROF='Off'", + "-DCOMPILER_RT_BUILD_ORC='Off'", + "-DCOMPILER_RT_DEFAULT_TARGET_ARCH='x86_64'", + "-DLIBCLANG_BUILD_STATIC='On'", + "-DBUILD_SHARED_LIBS='Off'", + ]) + .args(crate::platforms::shared::SHARED_BUILD_OPTS) + .args(crate::platforms::shared::shared_build_opts_ccache( + ccache_variant, + )); + if enable_coverage { + cmake_command.args([ + "-DCOMPILER_RT_BUILD_CTX_PROFILE='Off'", + // Skip the link-based target probe; libc++ isn't built yet so + // the probe fails and silently disables `libclang_rt.profile.a`. + "-DCOMPILER_RT_DEFAULT_TARGET_ONLY='On'", + ]); + } + crate::utils::command(&mut cmake_command, "LLVM host building cmake")?; let mut crt_lib_directory = crt_target_directory.to_path_buf(); crt_lib_directory.push("lib/"); diff --git a/docs/404.html b/docs/404.html index 70e1867d9..8edc4b62a 100644 --- a/docs/404.html +++ b/docs/404.html @@ -36,10 +36,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-07c17d47.js"; - +
diff --git a/docs/developer_guide.html b/docs/developer_guide.html index 96df68492..08c666007 100644 --- a/docs/developer_guide.html +++ b/docs/developer_guide.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-07c17d47.js"; - +
diff --git a/docs/developer_guide/architecture.html b/docs/developer_guide/architecture.html index 27631c47b..c475855bd 100644 --- a/docs/developer_guide/architecture.html +++ b/docs/developer_guide/architecture.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
diff --git a/docs/developer_guide/contributing.html b/docs/developer_guide/contributing.html index 3d23c240c..571a437fe 100644 --- a/docs/developer_guide/contributing.html +++ b/docs/developer_guide/contributing.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
diff --git a/docs/developer_guide/coverage.html b/docs/developer_guide/coverage.html new file mode 100644 index 000000000..9c2ae1567 --- /dev/null +++ b/docs/developer_guide/coverage.html @@ -0,0 +1,297 @@ + + + + + + Code coverage - revive compiler book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Keyboard shortcuts

+
+

Press or to navigate between chapters

+

Press S or / to search in the book

+

Press ? to show this help

+

Press Esc to hide this help

+
+
+
+
+ + + + + + + + + + + + + +
+ +
+
+ + + + + + + +
+
+

Code coverage

+

Revive measures Rust line and branch coverage with +cargo-llvm-cov over the same +crate set as make test-workspace (the workspace minus +revive-llvm-builder).

+

Two ways to obtain a report:

+
    +
  1. Locally: make coverage (described below).
  2. +
  3. Per PR: apply the measure code coverage label. The workflow at +.github/workflows/code-coverage.yml publishes the report to +https://paritytech.github.io/revive/pr-<N>/ and comments the link on +the PR. Label requires maintainer privileges.
  4. +
+

Running locally

+
make coverage
+
+

The target:

+
    +
  1. Builds and tests the workspace under cargo-llvm-cov with +--ignore-run-fail so partial coverage lands even when test binaries +exit non-zero.
  2. +
  3. Writes HTML to target/coverage/html/ and a summary to +target/coverage/summary.txt.
  4. +
  5. Stages the HTML under book/src/coverage/; mdbook copies it to +docs/coverage/ during build.
  6. +
  7. Rewrites the Status block below in place with the short commit hash, +ISO-8601 UTC timestamp, and total line coverage, then runs +mdbook build.
  8. +
+

Prerequisites:

+
    +
  • LLVM_SYS_221_PREFIX exported and pointing at a compatible LLVM build +(same as make test-workspace).
  • +
  • llvm-tools-preview rustup component, cargo-llvm-cov, and the pinned +mdbook version — all installed on demand by the target.
  • +
+

Reverting local changes

+

make coverage modifies book/src/developer_guide/coverage.md in place and +stages files under book/src/coverage/. To restore the committed state +before pushing:

+
make coverage-reset
+
+

Status

+ +

Last collected: 2026-07-06T18:46:06Z for commit 0db01dcb62.79% line coverage.

+

Open the report

+ + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + diff --git a/docs/developer_guide/cross_compilation.html b/docs/developer_guide/cross_compilation.html index 75e1f59d2..46bd86c67 100644 --- a/docs/developer_guide/cross_compilation.html +++ b/docs/developer_guide/cross_compilation.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
@@ -200,7 +200,7 @@

musl libc

diff --git a/docs/faq.html b/docs/faq.html index 2c4fd16c5..12b34b5f5 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-07c17d47.js"; - +
diff --git a/docs/index.html b/docs/index.html index f31e5e306..b6d85672d 100644 --- a/docs/index.html +++ b/docs/index.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-07c17d47.js"; - +
diff --git a/docs/print.html b/docs/print.html index d49e68160..1d7f6b401 100644 --- a/docs/print.html +++ b/docs/print.html @@ -36,10 +36,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-07c17d47.js"; - +
@@ -4819,6 +4819,54 @@

Revive Differential Tests follow the exact same strategy but implement a much more powerful test spec format, spec runner and reports. This allows differentially testing much more complex test cases (for example testing Uniswap pair creations and swaps), executed via transactions sent to actual blockchain nodes.

+

Code coverage

+

Revive measures Rust line and branch coverage with +cargo-llvm-cov over the same +crate set as make test-workspace (the workspace minus +revive-llvm-builder).

+

Two ways to obtain a report:

+
    +
  1. Locally: make coverage (described below).
  2. +
  3. Per PR: apply the measure code coverage label. The workflow at +.github/workflows/code-coverage.yml publishes the report to +https://paritytech.github.io/revive/pr-<N>/ and comments the link on +the PR. Label requires maintainer privileges.
  4. +
+

Running locally

+
make coverage
+
+

The target:

+
    +
  1. Builds and tests the workspace under cargo-llvm-cov with +--ignore-run-fail so partial coverage lands even when test binaries +exit non-zero.
  2. +
  3. Writes HTML to target/coverage/html/ and a summary to +target/coverage/summary.txt.
  4. +
  5. Stages the HTML under book/src/coverage/; mdbook copies it to +docs/coverage/ during build.
  6. +
  7. Rewrites the Status block below in place with the short commit hash, +ISO-8601 UTC timestamp, and total line coverage, then runs +mdbook build.
  8. +
+

Prerequisites:

+
    +
  • LLVM_SYS_221_PREFIX exported and pointing at a compatible LLVM build +(same as make test-workspace).
  • +
  • llvm-tools-preview rustup component, cargo-llvm-cov, and the pinned +mdbook version — all installed on demand by the target.
  • +
+

Reverting local changes

+

make coverage modifies book/src/developer_guide/coverage.md in place and +stages files under book/src/coverage/. To restore the committed state +before pushing:

+
make coverage-reset
+
+

Status

+ +

Last collected: 2026-07-06T18:46:06Z for commit 0db01dcb62.79% line coverage.

+

Open the report

+ +

Cross compilation

We cross-compile the resolc.js frontend executable to Wasm for running it in a Node.js or browser environment.

The musl target is used to obtain statically linked ELF binaries for Linux.

diff --git a/docs/revive_runner.html b/docs/revive_runner.html index 1aee49afa..a5dfb16ac 100644 --- a/docs/revive_runner.html +++ b/docs/revive_runner.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-07c17d47.js"; - +
diff --git a/docs/roadmap.html b/docs/roadmap.html index c5d6161da..9af98e807 100644 --- a/docs/roadmap.html +++ b/docs/roadmap.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-07c17d47.js"; - +
diff --git a/docs/searcher-c2a407aa.js b/docs/searcher-c2a407aa.js index f92b02ab6..21d9a1e5a 100644 --- a/docs/searcher-c2a407aa.js +++ b/docs/searcher-c2a407aa.js @@ -437,7 +437,7 @@ window.search = window.search || {}; if (yes) { loadSearchScript( window.path_to_searchindex_js || - path_to_root + 'searchindex-339ac392.js', + path_to_root + 'searchindex-07c17d47.js', 'mdbook-search-index'); search_wrap.classList.remove('hidden'); searchicon.setAttribute('aria-expanded', 'true'); diff --git a/docs/searchindex-07c17d47.js b/docs/searchindex-07c17d47.js new file mode 100644 index 000000000..2ae4c792b --- /dev/null +++ b/docs/searchindex-07c17d47.js @@ -0,0 +1 @@ +window.search = Object.assign(window.search, JSON.parse('{"doc_urls":["welcome.html#welcome","welcome.html#target-audience","welcome.html#other-polkadot-contracts-resources","welcome.html#about","user_guide.html#resolc-user-guide","user_guide.html#revive-vs-resolc-nomenclature","user_guide/installation.html#installation","user_guide/installation.html#resolc-binary-releases","user_guide/installation.html#installing-the-solc-dependency","user_guide/installation.html#revive-npm-package","user_guide/installation.html#buidling-resolc-from-source","user_guide/cli.html#cli-usage","user_guide/cli.html#llvm-optimization-levels","user_guide/cli.html#newyork-ir-pipeline","user_guide/cli.html#stack-size","user_guide/cli.html#heap-size","user_guide/cli.html#solc","user_guide/cli.html#debug-artifacts","user_guide/cli.html#debug-info","user_guide/cli.html#deploy-time-linking","user_guide/js.html#js-npm-package","user_guide/tooling.html#tooling-integration","user_guide/tooling.html#solidity-toolkits","user_guide/tooling.html#compiler-explorer","user_guide/tooling.html#remix-ide","user_guide/std_json.html#standard-json-interface","user_guide/std_json.html#the-settingspolkavm-object","user_guide/std_json.html#settingspolkavmdebuginformation","user_guide/std_json.html#settingspolkavmnewyork","user_guide/std_json.html#the-settingspolkavmmemoryconfig-object","user_guide/std_json.html#the-settingsoptimizer-object","user_guide/std_json.html#settingsoptimizermode","user_guide/std_json.html#settingsllvmarguments","user_guide/std_json.html#the-settingsoutputselection-object","user_guide/std_json.html#the-all--wildcard","user_guide/std_json.html#the-contract-level-evm-output-selection","user_guide/differences.html#differences-to-evm","user_guide/differences.html#deploy-code-vs-runtime-code","user_guide/differences.html#solidity","user_guide/differences.html#the-6364-gas-rule","user_guide/differences.html#addresscreationcode","user_guide/differences.html#yul-functions","user_guide/differences.html#mload-mstore-msize-mcopy-memory-related-functions","user_guide/differences.html#calldataload-calldatacopy","user_guide/differences.html#codecopy","user_guide/differences.html#create-create2","user_guide/differences.html#dataoffset","user_guide/differences.html#datasize","user_guide/differences.html#revert-return","user_guide/differences.html#prevrandao-difficulty","user_guide/differences.html#pc-extcodecopy","user_guide/differences.html#blobhash-blobbasefee","user_guide/differences.html#difference-regarding-the-solc-via-ir-mode","user_guide/differences.html#example-state-variable-initialization-order-in-inheritance","user_guide/rust_libraries.html#rust-contract-libraries","revive_runner.html#revive-runner-sandbox","revive_runner.html#installation-and-usage","revive_runner.html#trace-logs","revive_runner.html#automatic-contract-instantiation","revive_runner.html#example","developer_guide.html#developer-guide","developer_guide/contributing.html#contributor-guide","developer_guide/contributing.html#getting-started","developer_guide/contributing.html#using-the-makefile","developer_guide/contributing.html#codebase-organization","developer_guide/contributing.html#contribution-rules","developer_guide/contributing.html#style-guide","developer_guide/contributing.html#ai-policy","developer_guide/architecture.html#compiler-architecture-and-internals","developer_guide/architecture.html#resolc","developer_guide/architecture.html#reproducible-contract-builds","developer_guide/architecture.html#the-revive-compiler-libraries","developer_guide/architecture.html#evm-heap-memory","developer_guide/architecture.html#the-llvm-dependency","developer_guide/architecture.html#custom-optimizations","developer_guide/newyork_optimizer.html#the-newyork-optimizer","developer_guide/newyork_optimizer.html#motivation","developer_guide/newyork_optimizer.html#pipeline-overview","developer_guide/newyork_optimizer.html#ir-design","developer_guide/newyork_optimizer.html#key-optimizations-explained","developer_guide/newyork_optimizer.html#type-narrowing","developer_guide/newyork_optimizer.html#guard-narrowing","developer_guide/newyork_optimizer.html#heap-optimization","developer_guide/newyork_optimizer.html#free-memory-pointer-range-proof","developer_guide/newyork_optimizer.html#soundness-traps-for-fmp-optimizations","developer_guide/newyork_optimizer.html#keccak256-fusion-and-folding","developer_guide/newyork_optimizer.html#compound-outlining-mapping-access","developer_guide/newyork_optimizer.html#fuzzy-function-deduplication","developer_guide/newyork_optimizer.html#revert-pattern-outlining","developer_guide/newyork_optimizer.html#outlined-helper-functions","developer_guide/newyork_optimizer.html#codesize-results","developer_guide/newyork_optimizer.html#integration-test-contracts","developer_guide/newyork_optimizer.html#openzeppelin-contracts","developer_guide/newyork_optimizer.html#development-history-and-challenges","developer_guide/newyork_optimizer.html#approaches-that-did-not-work","developer_guide/newyork_optimizer.html#known-limitations-and-future-work","developer_guide/newyork_optimizer.html#debug-output","developer_guide/newyork_optimizer.html#module-reference","developer_guide/newyork_ir.html#newyork-ir-reference","developer_guide/newyork_ir.html#how-to-read-this-reference","developer_guide/newyork_ir.html#entry-format","developer_guide/newyork_ir.html#syntax-notation","developer_guide/newyork_ir.html#operation-index","developer_guide/newyork_ir.html#type-system","developer_guide/newyork_ir.html#type","developer_guide/newyork_ir.html#bitwidth","developer_guide/newyork_ir.html#addressspace","developer_guide/newyork_ir.html#memoryregion","developer_guide/newyork_ir.html#pure-expressions-1","developer_guide/newyork_ir.html#0xhex","developer_guide/newyork_ir.html#vid","developer_guide/newyork_ir.html#add","developer_guide/newyork_ir.html#sub","developer_guide/newyork_ir.html#mul","developer_guide/newyork_ir.html#div","developer_guide/newyork_ir.html#sdiv","developer_guide/newyork_ir.html#mod","developer_guide/newyork_ir.html#smod","developer_guide/newyork_ir.html#exp","developer_guide/newyork_ir.html#and","developer_guide/newyork_ir.html#or","developer_guide/newyork_ir.html#xor","developer_guide/newyork_ir.html#shl","developer_guide/newyork_ir.html#shr","developer_guide/newyork_ir.html#sar","developer_guide/newyork_ir.html#lt","developer_guide/newyork_ir.html#gt","developer_guide/newyork_ir.html#slt","developer_guide/newyork_ir.html#sgt","developer_guide/newyork_ir.html#eq","developer_guide/newyork_ir.html#byte","developer_guide/newyork_ir.html#signextend","developer_guide/newyork_ir.html#addmod","developer_guide/newyork_ir.html#mulmod","developer_guide/newyork_ir.html#iszero","developer_guide/newyork_ir.html#not","developer_guide/newyork_ir.html#clz","developer_guide/newyork_ir.html#truncateibits","developer_guide/newyork_ir.html#zextibits","developer_guide/newyork_ir.html#sextibits","developer_guide/newyork_ir.html#keccak256","developer_guide/newyork_ir.html#keccak256_pair","developer_guide/newyork_ir.html#keccak256_single","developer_guide/newyork_ir.html#caller","developer_guide/newyork_ir.html#callvalue","developer_guide/newyork_ir.html#origin","developer_guide/newyork_ir.html#address","developer_guide/newyork_ir.html#chainid","developer_guide/newyork_ir.html#gas","developer_guide/newyork_ir.html#msize","developer_guide/newyork_ir.html#coinbase","developer_guide/newyork_ir.html#timestamp","developer_guide/newyork_ir.html#number","developer_guide/newyork_ir.html#difficulty","developer_guide/newyork_ir.html#gaslimit","developer_guide/newyork_ir.html#basefee","developer_guide/newyork_ir.html#blobbasefee","developer_guide/newyork_ir.html#blobhash","developer_guide/newyork_ir.html#blockhash","developer_guide/newyork_ir.html#selfbalance","developer_guide/newyork_ir.html#gasprice","developer_guide/newyork_ir.html#calldataload","developer_guide/newyork_ir.html#calldatasize","developer_guide/newyork_ir.html#returndatasize","developer_guide/newyork_ir.html#codesize","developer_guide/newyork_ir.html#extcodesize","developer_guide/newyork_ir.html#extcodehash","developer_guide/newyork_ir.html#balance","developer_guide/newyork_ir.html#mload","developer_guide/newyork_ir.html#sload","developer_guide/newyork_ir.html#tload","developer_guide/newyork_ir.html#mapping_sload","developer_guide/newyork_ir.html#dataoffset","developer_guide/newyork_ir.html#datasize","developer_guide/newyork_ir.html#loadimmutable","developer_guide/newyork_ir.html#linkersymbol","developer_guide/newyork_ir.html#func_name","developer_guide/newyork_ir.html#memory-and-storage-writes-1","developer_guide/newyork_ir.html#mstore","developer_guide/newyork_ir.html#mstore8","developer_guide/newyork_ir.html#mcopy","developer_guide/newyork_ir.html#sstore","developer_guide/newyork_ir.html#tstore","developer_guide/newyork_ir.html#mapping_sstore","developer_guide/newyork_ir.html#bulk-copies-1","developer_guide/newyork_ir.html#codecopy","developer_guide/newyork_ir.html#extcodecopy","developer_guide/newyork_ir.html#returndatacopy","developer_guide/newyork_ir.html#datacopy","developer_guide/newyork_ir.html#calldatacopy","developer_guide/newyork_ir.html#bindings-and-wrappers-1","developer_guide/newyork_ir.html#let","developer_guide/newyork_ir.html#expression-statement","developer_guide/newyork_ir.html#setimmutable","developer_guide/newyork_ir.html#structured-control-flow-1","developer_guide/newyork_ir.html#if","developer_guide/newyork_ir.html#switch","developer_guide/newyork_ir.html#for","developer_guide/newyork_ir.html#break","developer_guide/newyork_ir.html#continue","developer_guide/newyork_ir.html#leave","developer_guide/newyork_ir.html#nested-block","developer_guide/newyork_ir.html#external-interaction-1","developer_guide/newyork_ir.html#call","developer_guide/newyork_ir.html#callcode","developer_guide/newyork_ir.html#delegatecall","developer_guide/newyork_ir.html#staticcall","developer_guide/newyork_ir.html#create","developer_guide/newyork_ir.html#create2","developer_guide/newyork_ir.html#logn","developer_guide/newyork_ir.html#termination-1","developer_guide/newyork_ir.html#return","developer_guide/newyork_ir.html#revert","developer_guide/newyork_ir.html#stop","developer_guide/newyork_ir.html#invalid","developer_guide/newyork_ir.html#selfdestruct","developer_guide/newyork_ir.html#panic_revert","developer_guide/newyork_ir.html#error_string_revert","developer_guide/newyork_ir.html#custom_error_revert","developer_guide/target.html#pvm-and-the-pallet-revive-runtime-target","developer_guide/target.html#target-cpu-configuration","developer_guide/target.html#why-pvm","developer_guide/target.html#host-environment-pallet-revive","developer_guide/testing.html#testing-strategy","developer_guide/testing.html#bug-compatibility-with-ethereum-solidity","developer_guide/testing.html#differential-integration-tests","developer_guide/testing.html#the-differential-testing-utility","developer_guide/coverage.html#code-coverage","developer_guide/coverage.html#running-locally","developer_guide/coverage.html#reverting-local-changes","developer_guide/coverage.html#status","developer_guide/cross_compilation.html#cross-compilation","developer_guide/cross_compilation.html#wasm-via-emscripten","developer_guide/cross_compilation.html#musl-libc","faq.html#faq","faq.html#what-evm-version-do-you-support","faq.html#is-inline-assembly-supported","faq.html#do-you-support-opcode-xy","faq.html#in-what-solidity-version-should-i-write-my-dapp","faq.html#tool-xy-says-the-contract-size-is-larger-than-24kb-and-will-fail-to-deploy","faq.html#is-resolc-a-drop-in-replacement-for-solc","roadmap.html#vision-and-roadmap","roadmap.html#roadmap"],"index":{"documentStore":{"docInfo":{"0":{"body":74,"breadcrumbs":2,"title":1},"1":{"body":22,"breadcrumbs":3,"title":2},"10":{"body":6,"breadcrumbs":7,"title":3},"100":{"body":174,"breadcrumbs":8,"title":2},"101":{"body":235,"breadcrumbs":8,"title":2},"102":{"body":133,"breadcrumbs":8,"title":2},"103":{"body":25,"breadcrumbs":8,"title":2},"104":{"body":36,"breadcrumbs":7,"title":1},"105":{"body":91,"breadcrumbs":7,"title":1},"106":{"body":61,"breadcrumbs":7,"title":1},"107":{"body":80,"breadcrumbs":7,"title":1},"108":{"body":42,"breadcrumbs":8,"title":2},"109":{"body":78,"breadcrumbs":7,"title":1},"11":{"body":33,"breadcrumbs":8,"title":2},"110":{"body":56,"breadcrumbs":7,"title":1},"111":{"body":51,"breadcrumbs":7,"title":1},"112":{"body":47,"breadcrumbs":7,"title":1},"113":{"body":47,"breadcrumbs":7,"title":1},"114":{"body":49,"breadcrumbs":7,"title":1},"115":{"body":58,"breadcrumbs":7,"title":1},"116":{"body":40,"breadcrumbs":7,"title":1},"117":{"body":48,"breadcrumbs":7,"title":1},"118":{"body":51,"breadcrumbs":7,"title":1},"119":{"body":59,"breadcrumbs":6,"title":0},"12":{"body":59,"breadcrumbs":9,"title":3},"120":{"body":30,"breadcrumbs":6,"title":0},"121":{"body":31,"breadcrumbs":7,"title":1},"122":{"body":53,"breadcrumbs":7,"title":1},"123":{"body":65,"breadcrumbs":7,"title":1},"124":{"body":73,"breadcrumbs":7,"title":1},"125":{"body":41,"breadcrumbs":7,"title":1},"126":{"body":41,"breadcrumbs":7,"title":1},"127":{"body":40,"breadcrumbs":7,"title":1},"128":{"body":40,"breadcrumbs":7,"title":1},"129":{"body":38,"breadcrumbs":7,"title":1},"13":{"body":42,"breadcrumbs":9,"title":3},"130":{"body":59,"breadcrumbs":7,"title":1},"131":{"body":76,"breadcrumbs":7,"title":1},"132":{"body":57,"breadcrumbs":7,"title":1},"133":{"body":57,"breadcrumbs":7,"title":1},"134":{"body":33,"breadcrumbs":7,"title":1},"135":{"body":38,"breadcrumbs":6,"title":0},"136":{"body":61,"breadcrumbs":7,"title":1},"137":{"body":67,"breadcrumbs":7,"title":1},"138":{"body":45,"breadcrumbs":7,"title":1},"139":{"body":66,"breadcrumbs":7,"title":1},"14":{"body":62,"breadcrumbs":8,"title":2},"140":{"body":83,"breadcrumbs":7,"title":1},"141":{"body":68,"breadcrumbs":7,"title":1},"142":{"body":42,"breadcrumbs":7,"title":1},"143":{"body":24,"breadcrumbs":7,"title":1},"144":{"body":22,"breadcrumbs":7,"title":1},"145":{"body":25,"breadcrumbs":7,"title":1},"146":{"body":24,"breadcrumbs":7,"title":1},"147":{"body":22,"breadcrumbs":7,"title":1},"148":{"body":42,"breadcrumbs":7,"title":1},"149":{"body":54,"breadcrumbs":7,"title":1},"15":{"body":75,"breadcrumbs":8,"title":2},"150":{"body":23,"breadcrumbs":7,"title":1},"151":{"body":23,"breadcrumbs":7,"title":1},"152":{"body":21,"breadcrumbs":7,"title":1},"153":{"body":27,"breadcrumbs":7,"title":1},"154":{"body":21,"breadcrumbs":7,"title":1},"155":{"body":25,"breadcrumbs":7,"title":1},"156":{"body":26,"breadcrumbs":7,"title":1},"157":{"body":37,"breadcrumbs":7,"title":1},"158":{"body":42,"breadcrumbs":7,"title":1},"159":{"body":26,"breadcrumbs":7,"title":1},"16":{"body":10,"breadcrumbs":7,"title":1},"160":{"body":22,"breadcrumbs":7,"title":1},"161":{"body":40,"breadcrumbs":7,"title":1},"162":{"body":23,"breadcrumbs":7,"title":1},"163":{"body":42,"breadcrumbs":7,"title":1},"164":{"body":23,"breadcrumbs":7,"title":1},"165":{"body":41,"breadcrumbs":7,"title":1},"166":{"body":41,"breadcrumbs":7,"title":1},"167":{"body":42,"breadcrumbs":7,"title":1},"168":{"body":101,"breadcrumbs":7,"title":1},"169":{"body":84,"breadcrumbs":7,"title":1},"17":{"body":43,"breadcrumbs":8,"title":2},"170":{"body":49,"breadcrumbs":7,"title":1},"171":{"body":98,"breadcrumbs":7,"title":1},"172":{"body":54,"breadcrumbs":7,"title":1},"173":{"body":44,"breadcrumbs":7,"title":1},"174":{"body":47,"breadcrumbs":7,"title":1},"175":{"body":43,"breadcrumbs":7,"title":1},"176":{"body":134,"breadcrumbs":7,"title":1},"177":{"body":32,"breadcrumbs":9,"title":3},"178":{"body":110,"breadcrumbs":7,"title":1},"179":{"body":101,"breadcrumbs":7,"title":1},"18":{"body":15,"breadcrumbs":8,"title":2},"180":{"body":95,"breadcrumbs":7,"title":1},"181":{"body":107,"breadcrumbs":7,"title":1},"182":{"body":88,"breadcrumbs":7,"title":1},"183":{"body":112,"breadcrumbs":7,"title":1},"184":{"body":34,"breadcrumbs":8,"title":2},"185":{"body":63,"breadcrumbs":7,"title":1},"186":{"body":81,"breadcrumbs":7,"title":1},"187":{"body":80,"breadcrumbs":7,"title":1},"188":{"body":69,"breadcrumbs":7,"title":1},"189":{"body":63,"breadcrumbs":7,"title":1},"19":{"body":236,"breadcrumbs":9,"title":3},"190":{"body":25,"breadcrumbs":8,"title":2},"191":{"body":98,"breadcrumbs":6,"title":0},"192":{"body":80,"breadcrumbs":8,"title":2},"193":{"body":58,"breadcrumbs":7,"title":1},"194":{"body":35,"breadcrumbs":9,"title":3},"195":{"body":119,"breadcrumbs":6,"title":0},"196":{"body":107,"breadcrumbs":7,"title":1},"197":{"body":211,"breadcrumbs":6,"title":0},"198":{"body":47,"breadcrumbs":7,"title":1},"199":{"body":45,"breadcrumbs":7,"title":1},"2":{"body":7,"breadcrumbs":4,"title":3},"20":{"body":31,"breadcrumbs":9,"title":3},"200":{"body":73,"breadcrumbs":7,"title":1},"201":{"body":48,"breadcrumbs":8,"title":2},"202":{"body":20,"breadcrumbs":8,"title":2},"203":{"body":147,"breadcrumbs":7,"title":1},"204":{"body":68,"breadcrumbs":7,"title":1},"205":{"body":74,"breadcrumbs":7,"title":1},"206":{"body":70,"breadcrumbs":7,"title":1},"207":{"body":85,"breadcrumbs":7,"title":1},"208":{"body":61,"breadcrumbs":7,"title":1},"209":{"body":94,"breadcrumbs":7,"title":1},"21":{"body":9,"breadcrumbs":7,"title":2},"210":{"body":30,"breadcrumbs":7,"title":1},"211":{"body":62,"breadcrumbs":7,"title":1},"212":{"body":68,"breadcrumbs":7,"title":1},"213":{"body":28,"breadcrumbs":7,"title":1},"214":{"body":33,"breadcrumbs":7,"title":1},"215":{"body":55,"breadcrumbs":7,"title":1},"216":{"body":89,"breadcrumbs":7,"title":1},"217":{"body":100,"breadcrumbs":7,"title":1},"218":{"body":91,"breadcrumbs":7,"title":1},"219":{"body":9,"breadcrumbs":12,"title":5},"22":{"body":14,"breadcrumbs":7,"title":2},"220":{"body":14,"breadcrumbs":10,"title":3},"221":{"body":199,"breadcrumbs":8,"title":1},"222":{"body":34,"breadcrumbs":11,"title":4},"223":{"body":63,"breadcrumbs":6,"title":2},"224":{"body":34,"breadcrumbs":8,"title":4},"225":{"body":187,"breadcrumbs":7,"title":3},"226":{"body":73,"breadcrumbs":7,"title":3},"227":{"body":51,"breadcrumbs":6,"title":2},"228":{"body":79,"breadcrumbs":6,"title":2},"229":{"body":17,"breadcrumbs":7,"title":3},"23":{"body":11,"breadcrumbs":7,"title":2},"230":{"body":12,"breadcrumbs":5,"title":1},"231":{"body":19,"breadcrumbs":6,"title":2},"232":{"body":69,"breadcrumbs":7,"title":3},"233":{"body":12,"breadcrumbs":6,"title":2},"234":{"body":0,"breadcrumbs":2,"title":1},"235":{"body":12,"breadcrumbs":4,"title":3},"236":{"body":10,"breadcrumbs":4,"title":3},"237":{"body":4,"breadcrumbs":4,"title":3},"238":{"body":25,"breadcrumbs":5,"title":4},"239":{"body":13,"breadcrumbs":9,"title":8},"24":{"body":14,"breadcrumbs":7,"title":2},"240":{"body":9,"breadcrumbs":5,"title":4},"241":{"body":66,"breadcrumbs":4,"title":2},"242":{"body":49,"breadcrumbs":3,"title":1},"25":{"body":15,"breadcrumbs":9,"title":3},"26":{"body":6,"breadcrumbs":8,"title":2},"27":{"body":9,"breadcrumbs":7,"title":1},"28":{"body":31,"breadcrumbs":7,"title":1},"29":{"body":31,"breadcrumbs":8,"title":2},"3":{"body":15,"breadcrumbs":1,"title":0},"30":{"body":8,"breadcrumbs":8,"title":2},"31":{"body":10,"breadcrumbs":7,"title":1},"32":{"body":13,"breadcrumbs":7,"title":1},"33":{"body":4,"breadcrumbs":8,"title":2},"34":{"body":63,"breadcrumbs":7,"title":1},"35":{"body":83,"breadcrumbs":11,"title":5},"36":{"body":23,"breadcrumbs":7,"title":2},"37":{"body":41,"breadcrumbs":10,"title":5},"38":{"body":6,"breadcrumbs":6,"title":1},"39":{"body":18,"breadcrumbs":8,"title":3},"4":{"body":43,"breadcrumbs":6,"title":3},"40":{"body":5,"breadcrumbs":6,"title":1},"41":{"body":58,"breadcrumbs":7,"title":2},"42":{"body":64,"breadcrumbs":12,"title":7},"43":{"body":16,"breadcrumbs":7,"title":2},"44":{"body":3,"breadcrumbs":6,"title":1},"45":{"body":101,"breadcrumbs":7,"title":2},"46":{"body":3,"breadcrumbs":6,"title":1},"47":{"body":7,"breadcrumbs":6,"title":1},"48":{"body":8,"breadcrumbs":7,"title":2},"49":{"body":4,"breadcrumbs":7,"title":2},"5":{"body":52,"breadcrumbs":7,"title":4},"50":{"body":10,"breadcrumbs":7,"title":2},"51":{"body":20,"breadcrumbs":7,"title":2},"52":{"body":24,"breadcrumbs":11,"title":6},"53":{"body":57,"breadcrumbs":11,"title":6},"54":{"body":167,"breadcrumbs":9,"title":3},"55":{"body":36,"breadcrumbs":6,"title":3},"56":{"body":21,"breadcrumbs":5,"title":2},"57":{"body":38,"breadcrumbs":5,"title":2},"58":{"body":15,"breadcrumbs":6,"title":3},"59":{"body":120,"breadcrumbs":4,"title":1},"6":{"body":24,"breadcrumbs":5,"title":1},"60":{"body":11,"breadcrumbs":4,"title":2},"61":{"body":11,"breadcrumbs":6,"title":2},"62":{"body":8,"breadcrumbs":6,"title":2},"63":{"body":39,"breadcrumbs":6,"title":2},"64":{"body":85,"breadcrumbs":6,"title":2},"65":{"body":44,"breadcrumbs":6,"title":2},"66":{"body":107,"breadcrumbs":6,"title":2},"67":{"body":112,"breadcrumbs":6,"title":2},"68":{"body":58,"breadcrumbs":7,"title":3},"69":{"body":55,"breadcrumbs":5,"title":1},"7":{"body":21,"breadcrumbs":7,"title":3},"70":{"body":76,"breadcrumbs":7,"title":3},"71":{"body":65,"breadcrumbs":7,"title":3},"72":{"body":57,"breadcrumbs":7,"title":3},"73":{"body":69,"breadcrumbs":6,"title":2},"74":{"body":49,"breadcrumbs":6,"title":2},"75":{"body":44,"breadcrumbs":6,"title":2},"76":{"body":84,"breadcrumbs":5,"title":1},"77":{"body":372,"breadcrumbs":6,"title":2},"78":{"body":116,"breadcrumbs":6,"title":2},"79":{"body":0,"breadcrumbs":7,"title":3},"8":{"body":13,"breadcrumbs":7,"title":3},"80":{"body":182,"breadcrumbs":6,"title":2},"81":{"body":72,"breadcrumbs":6,"title":2},"82":{"body":118,"breadcrumbs":6,"title":2},"83":{"body":147,"breadcrumbs":9,"title":5},"84":{"body":349,"breadcrumbs":8,"title":4},"85":{"body":148,"breadcrumbs":7,"title":3},"86":{"body":43,"breadcrumbs":8,"title":4},"87":{"body":32,"breadcrumbs":7,"title":3},"88":{"body":56,"breadcrumbs":7,"title":3},"89":{"body":84,"breadcrumbs":7,"title":3},"9":{"body":5,"breadcrumbs":7,"title":3},"90":{"body":0,"breadcrumbs":6,"title":2},"91":{"body":67,"breadcrumbs":7,"title":3},"92":{"body":79,"breadcrumbs":6,"title":2},"93":{"body":216,"breadcrumbs":7,"title":3},"94":{"body":137,"breadcrumbs":6,"title":2},"95":{"body":137,"breadcrumbs":8,"title":4},"96":{"body":67,"breadcrumbs":6,"title":2},"97":{"body":139,"breadcrumbs":6,"title":2},"98":{"body":16,"breadcrumbs":9,"title":3},"99":{"body":74,"breadcrumbs":8,"title":2}},"docs":{"0":{"body":"Hello and a warm welcome to the revive Solidity compiler book! Warning Solidity on PVM is running on the pallet-revive runtime. This introduces observable semantic differences in comparison with the EVM. Study the differences section carefully. Ignoring these differences may lead to defunct contracts. Notable examples: The 63/64 gas rule isn’t implemented in the pallet (introduces potential DoS vector when calling other contracts) Contract instantiation works differently (by hash instead of by code) The gas model implemented by pallet-revive differs from Ethereum The heap size is fixed instead of gas-metered and there’s a fixed amount of stack size (contracts working fine on EVM may trap on PVM)","breadcrumbs":"Welcome » Welcome","id":"0","title":"Welcome"},"1":{"body":"Solidity dApp developers should read the user guide. Solidity on PolkaVM introduces important differences to EVM which should be well understood. Contributors will find the developer guide helpful for getting up to speed.","breadcrumbs":"Welcome » Target audience","id":"1","title":"Target audience"},"10":{"body":"Please follow the build instructions in the revive README.md.","breadcrumbs":"resolc user guide » Installation » Buidling resolc from source","id":"10","title":"Buidling resolc from source"},"100":{"body":"Each operation entry has the same shape: Field What it shows Heading The printed operation name (e.g. mstore) followed by the Expression or Statement variant it corresponds to in ir.rs. Description A short prose summary of what the operation does and any semantic notes worth knowing before reading the rest of the entry. Syntax The literal printer output, including any optional debug annotations (region tags, static-slot comments). Anything inside /* ... */ is a debug-only annotation and is not part of the operation itself. Example A minimal printed snippet, using the printer’s actual v0/ v1/… naming. Operands One row per input or structural participant in the printed syntax. Value operands list the narrowest type the operation guarantees (default i256; narrower widths only appear when type inference has narrowed an upstream definition). Vector-of-operands fields show Vec<…> as the type. Non-value participants such as nested regions are listed with an em-dash type to mark them as structural rather than as operands. Result and purity The type the operation produces (or none for statements that bind no value), followed by a purity label, either Pure or Effectful. Pure operations may be reordered, deduplicated, or eliminated by the simplifier; effectful ones may not. Effectful entries may carry a parenthetical describing the nature of the side effect when informative (e.g. “control flow”, “terminator”, or a note about revert/trap behavior). Annotations Operation-specific fields the printer surfaces as /* ... */ comments in the dump (region tag for memory ops, static-slot hint for storage ops, type suffix for non-default widths). Listed here as a table of source field → printed form.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Entry format","id":"100","title":"Entry format"},"101":{"body":"Syntax templates in each entry use the following conventions: Notation Meaning add, mload, if, else, case, let, yield, … Literal printer tokens: bare lowercase identifiers and keywords that the printer emits verbatim. $offset, $value, $key, $lhs, $rhs, … Role names ( $-prefixed): placeholders for SSA value references the printer renders as v followed by a decimal id ( v0, v1, …). , , , , , , , , … Metavariables: stand for compile-time fields (type tags, hex values, identifier strings, integer counts), not SSA values. The concrete values they take are enumerated in the Annotations section of each entry or in the type system reference. […] Optional parts. Anything inside the brackets may or may not appear in any given dump, depending on the conditions described in the operation’s Annotations section. [: ] Optional type suffix on a value reference. Suppressed when the value’s type is the default i256 integer; present otherwise ( : i32, : ptr, …). /* … */ Debug-only annotations the printer attaches to certain operations (memory region tag, static-slot hint, etc.). … Repetition: “more entries of the same shape.” Used in vector operand lists ( $arg_0, $arg_1, …) and in multi-line block bodies ( { … }). For instance, this template: let $result[: ] := and($lhs[: ], $rhs[: ]) prints as: let v2: i8 := and(v0, v1: i8) $result rendered as v2 with an i8 type suffix, $lhs as v0 at the default i256 (type suffix omitted), and $rhs as v1 with an i8 type suffix. Note A value’s printed width is use-driven. Type inference assigns each value a forward width from its definition, then widens it to satisfy its uses. The type suffix shown for a value in an example (such as i8) is therefore only illustrative — a short example may not show the uses that determine it, and the same operation can appear with a wider suffix, or none (it is omitted for the default i256), in another program. For instance, a value used as a memory offset widens to i64; as an address (a call target, extcodesize) to i160; stored as a full word (an mstore/ sstore value) to i256; and an add/ mul operand up to the i64 register width.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Syntax notation","id":"101","title":"Syntax notation"},"102":{"body":"Pure expressions Constants and variables 0x v Arithmetic add sub mul div sdiv mod smod exp and or xor shl shr sar lt gt slt sgt eq byte signextend addmod mulmod iszero not clz Bit-width conversions truncate> zext> sext> Hashing keccak256 keccak256_pair keccak256_single Environment reads caller callvalue origin address chainid gas msize coinbase timestamp number difficulty gaslimit basefee blobbasefee blobhash blockhash selfbalance gasprice Calldata, returndata, and code calldataload calldatasize returndatasize codesize extcodesize extcodehash balance Memory and storage loads mload sload tload mapping_sload Linker dataoffset datasize loadimmutable linkersymbol Function call Memory and storage writes mstore mstore8 mcopy sstore tstore mapping_sstore Bulk copies codecopy extcodecopy returndatacopy datacopy calldatacopy Bindings and wrappers let expression statement setimmutable Structured control flow if switch for break continue leave nested block External interaction call callcode delegatecall staticcall create create2 log Termination return revert stop invalid selfdestruct panic_revert error_string_revert custom_error_revert","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Operation index","id":"102","title":"Operation index"},"103":{"body":"Every value in the IR carries a Type. The operation entries below refer to widths ( i1… i256), address spaces ( ptr, etc.), and memory regions ( scratch, etc.) by their printed form; this section is the reference for those names.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Type system","id":"103","title":"Type system"},"104":{"body":"The umbrella enum, with these variants: Variant Printed as Description Int(BitWidth) i1, i8, …, i256 An integer at one of the BitWidth widths. Ptr(AddressSpace) ptr, ptr, ptr, ptr A pointer tagged with its address space; see AddressSpace. Void void Unit type. Used for statements that produce no value and for void-returning functions.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Type","id":"104","title":"Type"},"105":{"body":"The rungs of integer width. Newly minted values default to I256; type inference narrows them down to one of the lower rungs when it can prove the upper bits are zero or unused. Variant Printed as Typical use I1 i1 Boolean. Result type of every comparison and iszero. I8 i8 Byte values. The narrowest meaningful integer. I32 i32 PolkaVM pointer width (XLEN); minimum width for function parameters under the rv64e ABI. I64 i64 PolkaVM native register width; most narrowed values land here. I128 i128 Two registers; arithmetic that overflows i64 but doesn’t need full 256-bit emulation. I160 i160 Ethereum addresses; result of caller, origin, mapping keys. I256 i256 EVM word width. The default and conservative ceiling.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » BitWidth","id":"105","title":"BitWidth"},"106":{"body":"The address space a pointer points into. Carried on every Ptr value so the codegen can lower loads and stores without a separate alias-analysis pass. Variant Printed as Points into Endianness Heap ptr Emulated EVM linear memory (the simulated mload/ mstore region). Big-endian (by EVM contract). Stack ptr Native PolkaVM stack allocations. Little-endian (no swap). Storage ptr Contract storage; key/value with 256-bit slots. Big-endian on the wire. Code ptr Read-only code/data segment. Big-endian.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » AddressSpace","id":"106","title":"AddressSpace"},"107":{"body":"A refinement carried by every memory load and store on top of AddressSpace::Heap. The tag tells later passes what kind of heap address an offset is hitting, which drives both free-memory-pointer propagation and byte-swap elimination. Variant Address range Printed as Meaning Scratch 0x00– 0x3f /* scratch */ EVM scratch space; safe to touch without consulting the free memory pointer. FreePointerSlot exactly 0x40 /* free_ptr */ Slot that stores the free memory pointer itself. Dynamic 0x80 and above /* dynamic */ Real heap allocations. Unknown everything else (constants in 0x41– 0x7f, plus all non-constant offsets) (suppressed) Conservative fallback used when the offset isn’t a constant or doesn’t slot cleanly.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » MemoryRegion","id":"107","title":"MemoryRegion"},"108":{"body":"Pure expressions produce values without side effects. The simplifier may freely reorder, deduplicate, and eliminate them. They appear on the right-hand side of a let binding, or as operands of other expressions and effectful statements; the operand positions accept SSA value references only, so any pure expression that is consumed elsewhere is first bound by a let. Examples in this section wrap each expression in a let v := … to give it somewhere to land.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Pure expressions","id":"108","title":"Pure expressions"},"109":{"body":"( Expression::Literal) Description A compile-time constant value with a declared type. New literals minted by the translator default to Int(I256); passes that synthesize constants at narrower widths (e.g. a one-bit boolean from a constant comparison) attach the narrower type directly. Syntax 0x[: ] Example let v0: i8 := 0x2a\\nlet v1: i1 := 0x1 // boolean true\\nlet v2: i64 := 0x80 Operands None — literals are leaves. Result and purity Result Purity Same as the literal’s value_type Pure Annotations Source field Printed as value: BigUint 0x in the syntax position (not a comment annotation; it is the expression itself) value_type: Type : suffix when value_type is not the default Int(I256); suppressed otherwise","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » 0x","id":"109","title":"0x"},"11":{"body":"We aim to keep the resolc CLI usage close to solc. There are a few things and options worthwhile to know about in resolc which do not exist in the Ethereum world. This chapter explains those in more detail than the CLI help message. Tip For the complete help about CLI options, please see resolc --help.","breadcrumbs":"resolc user guide » Command Line Interface » CLI usage","id":"11","title":"CLI usage"},"110":{"body":"( Expression::Var) Description A reference to an existing SSA value, used as the entire right-hand side of a let. In a typical dump this is rare because the simplifier collapses let v := v into the consumers of v via copy propagation; expect to see it only in dumps taken before simplification has run. Syntax v Example let v5 := v3 // copy; usually eliminated by simplify Operands None — the expression is the value reference itself. Result and purity Result Purity Same as the referenced value’s type Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » v","id":"110","title":"v"},"111":{"body":"( Expression::Binary with BinaryOperation::Add) Description Modular addition. Wraps on overflow; per EVM, the result is (lhs + rhs) mod 2^N where N is the operand width. Syntax add($lhs[: ], $rhs[: ]) Example let v2 := add(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity widen_by_one(max(width(lhs), width(rhs))) — one tier above the wider operand to account for the carry bit Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » add","id":"111","title":"add"},"112":{"body":"( Expression::Binary with BinaryOperation::Sub) Description Modular subtraction. Wraps on underflow; the result is (lhs - rhs) mod 2^256 regardless of operand widths. Syntax sub($lhs[: ], $rhs[: ]) Example let v2 := sub(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity i256 — conservative; underflow on narrower operands could borrow into upper bits Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sub","id":"112","title":"sub"},"113":{"body":"( Expression::Binary with BinaryOperation::Mul) Description Modular multiplication. The result is (lhs * rhs) mod 2^256. Syntax mul($lhs[: ], $rhs[: ]) Example let v2 := mul(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity double_width(max(width(lhs), width(rhs))) — the tier holding twice the wider operand’s bits (skipping i160 at the i128 → i256 transition) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mul","id":"113","title":"mul"},"114":{"body":"( Expression::Binary with BinaryOperation::Div) Description Unsigned integer division. Per EVM, div(x, 0) = 0 (no trap on division by zero). Syntax div($lhs[: ], $rhs[: ]) Example let v2 := div(v0, v1) Operands Name Type Notes lhs i256 Dividend. rhs i256 Divisor; 0 yields a result of 0, not a trap. Result and purity Result Purity width(lhs) — the quotient cannot exceed the dividend Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » div","id":"114","title":"div"},"115":{"body":"( Expression::Binary with BinaryOperation::SDiv) Description Signed two’s-complement integer division. Per EVM, sdiv(x, 0) = 0; quotient is truncated toward zero. Syntax sdiv($lhs[: ], $rhs[: ]) Example let v2 := sdiv(v0, v1) Operands Name Type Notes lhs i256 Dividend, treated as signed. rhs i256 Divisor, treated as signed; 0 yields 0. Result and purity Result Purity max(width(lhs), width(rhs)) — a negative divisor can push the result to full width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sdiv","id":"115","title":"sdiv"},"116":{"body":"( Expression::Binary with BinaryOperation::Mod) Description Unsigned modulo. Per EVM, mod(x, 0) = 0. Syntax mod($lhs[: ], $rhs[: ]) Example let v2 := mod(v0, v1) Operands Name Type Notes lhs i256 Dividend. rhs i256 Divisor; 0 yields 0. Result and purity Result Purity width(lhs) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mod","id":"116","title":"mod"},"117":{"body":"( Expression::Binary with BinaryOperation::SMod) Description Signed modulo. Per EVM, smod(x, 0) = 0; the result takes the sign of the dividend. Syntax smod($lhs[: ], $rhs[: ]) Example let v2 := smod(v0, v1) Operands Name Type Notes lhs i256 Dividend, treated as signed. rhs i256 Divisor, treated as signed; 0 yields 0. Result and purity Result Purity width(lhs) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » smod","id":"117","title":"smod"},"118":{"body":"( Expression::Binary with BinaryOperation::Exp) Description Modular exponentiation: (base ^ exponent) mod 2^256. The most expensive arithmetic opcode in EVM (variable gas cost proportional to the byte length of exponent). Syntax exp($base[: ], $exponent[: ]) Example let v2 := exp(v0, v1) Operands Name Type Notes base i256 Base. exponent i256 Exponent. Result and purity Result Purity i256 — conservative; exponentiation can fill any width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » exp","id":"118","title":"exp"},"119":{"body":"( Expression::Binary with BinaryOperation::And) Description Bitwise AND. The common idiom for type narrowing: a constant mask on the right lets forward analysis pick up a tight result width. Syntax and($lhs[: ], $rhs[: ]) Example let v2 := and(v0, v1)\\nlet v3: i8 := 0xff\\nlet v4: i8 := and(v0, v3: i8) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity min(width(lhs), width(rhs)) — AND can only clear bits, so the result fits in the narrower operand Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » and","id":"119","title":"and"},"12":{"body":"-O, --optimization resolc exposes the optimization level setting for the LLVM backend. The performance and size of compiled contracts varies widely between different optimization levels. (This is independent of --newyork which selects the IR lowering pipeline.) Valid levels are the following: 0: No optimizations are applied. 1: Basic optimizations for execution time. 2: Advanced optimizations for execution time. 3: Aggressive optimizations for execution time. s: Optimize for code size. z: Aggressively optimize for code size. By default, -Oz is applied.","breadcrumbs":"resolc user guide » Command Line Interface » LLVM optimization levels","id":"12","title":"LLVM optimization levels"},"120":{"body":"( Expression::Binary with BinaryOperation::Or) Description Bitwise OR. Syntax or($lhs[: ], $rhs[: ]) Example let v2 := or(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity max(width(lhs), width(rhs)) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » or","id":"120","title":"or"},"121":{"body":"( Expression::Binary with BinaryOperation::Xor) Description Bitwise XOR. Syntax xor($lhs[: ], $rhs[: ]) Example let v2 := xor(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity max(width(lhs), width(rhs)) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » xor","id":"121","title":"xor"},"122":{"body":"( Expression::Binary with BinaryOperation::Shl) Description Logical left shift. Operand order follows EVM: shl(shift, value) computes value << shift. Shifts ≥ 256 produce 0. Syntax shl($shift[: ], $value[: ]) Example let v2 := shl(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift. Result and purity Result Purity i256 — conservative; bits may shift into any width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » shl","id":"122","title":"shl"},"123":{"body":"( Expression::Binary with BinaryOperation::Shr) Description Logical right shift. Operand order follows EVM: shr(shift, value) computes value >> shift with zero-fill from the left. Shifts ≥ 256 produce 0. Syntax shr($shift[: ], $value[: ]) Example let v2 := shr(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift. Result and purity Result Purity If shift is a known constant k: tier holding 256 - k bits (or i1 for k ≥ 256). Otherwise: width(value). Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » shr","id":"123","title":"shr"},"124":{"body":"( Expression::Binary with BinaryOperation::Sar) Description Arithmetic (signed) right shift. Operand order follows EVM: sar(shift, value) shifts value right by shift bits, preserving the sign bit. Shifts ≥ 256 saturate to 0 for non-negative values and to -1 (all-ones) for negative values. Syntax sar($shift[: ], $value[: ]) Example let v2 := sar(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift, treated as signed. Result and purity Result Purity width(value) — unlike shr, sign-extension means a constant shift cannot narrow the result Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sar","id":"124","title":"sar"},"125":{"body":"( Expression::Binary with BinaryOperation::Lt) Description Unsigned less-than comparison. Returns 1 if lhs < rhs, else 0. Syntax lt($lhs[: ], $rhs[: ]) Example let v2: i1 := lt(v0, v1) Operands Name Type Notes lhs i256 Compared unsigned. rhs i256 Compared unsigned. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » lt","id":"125","title":"lt"},"126":{"body":"( Expression::Binary with BinaryOperation::Gt) Description Unsigned greater-than comparison. Returns 1 if lhs > rhs, else 0. Syntax gt($lhs[: ], $rhs[: ]) Example let v2: i1 := gt(v0, v1) Operands Name Type Notes lhs i256 Compared unsigned. rhs i256 Compared unsigned. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gt","id":"126","title":"gt"},"127":{"body":"( Expression::Binary with BinaryOperation::Slt) Description Signed less-than comparison. Operands are treated as two’s complement. Syntax slt($lhs[: ], $rhs[: ]) Example let v2: i1 := slt(v0, v1) Operands Name Type Notes lhs i256 Compared signed. rhs i256 Compared signed. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » slt","id":"127","title":"slt"},"128":{"body":"( Expression::Binary with BinaryOperation::Sgt) Description Signed greater-than comparison. Operands are treated as two’s complement. Syntax sgt($lhs[: ], $rhs[: ]) Example let v2: i1 := sgt(v0, v1) Operands Name Type Notes lhs i256 Compared signed. rhs i256 Compared signed. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sgt","id":"128","title":"sgt"},"129":{"body":"( Expression::Binary with BinaryOperation::Eq) Description Equality comparison. Returns 1 if lhs == rhs, else 0. Signedness is irrelevant. Syntax eq($lhs[: ], $rhs[: ]) Example let v2: i1 := eq(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » eq","id":"129","title":"eq"},"13":{"body":"--newyork Enables the newyork optimizer to reduced compiled contract code size, by routing Yul lowering through the experimental newyork IR pipeline instead of the standard Yul-to-LLVM path. Composes with --yul, --combined-json, and the default Solidity mode. In standard JSON mode this flag is rejected; enable the pipeline via the settings.polkavm.newyork input field instead. Off by default.","breadcrumbs":"resolc user guide » Command Line Interface » newyork IR pipeline","id":"13","title":"newyork IR pipeline"},"130":{"body":"( Expression::Binary with BinaryOperation::Byte) Description Extract a single byte from a 256-bit word. byte(i, x) returns the i-th byte of x with byte 0 being the most significant. If i ≥ 32, the result is 0. Syntax byte($index[: ], $word[: ]) Example let v2: i8 := byte(v0, v1) Operands Name Type Notes index i256 Byte position; 0 = most significant byte. Values ≥ 32 yield 0. word i256 Source word. Result and purity Result Purity i8 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » byte","id":"130","title":"byte"},"131":{"body":"( Expression::Binary with BinaryOperation::SignExtend) Description Sign-extend an integer from a byte position. Per EVM, signextend(b, x) treats byte b of x as the most significant byte of a smaller signed integer and extends its sign through the upper bytes. Syntax signextend($byte_position[: ], $value[: ]) Example let v2 := signextend(v0, v1) Operands Name Type Notes byte_position i256 Byte position of the sign byte (0–31). value i256 Source value. Result and purity Result Purity i256 — the extended value occupies the full word Pure Annotations The width-targeted sign-extension primitive sext> ( Expression::SignExtendTo) is a separate operation; see the bit-width conversions section.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » signextend","id":"131","title":"signextend"},"132":{"body":"( Expression::Ternary with BinaryOperation::AddMod) Description Ternary modular addition: (a + b) mod n, computed without intermediate overflow. Per EVM, n = 0 yields 0. Syntax addmod($a[: ], $b[: ], $n[: ]) Example let v3 := addmod(v0, v1, v2) Operands Name Type Notes a i256 First addend. b i256 Second addend. n i256 Modulus; 0 yields 0. Result and purity Result Purity i256 — conservative Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » addmod","id":"132","title":"addmod"},"133":{"body":"( Expression::Ternary with BinaryOperation::MulMod) Description Ternary modular multiplication: (a * b) mod n, computed without intermediate overflow. Per EVM, n = 0 yields 0. Syntax mulmod($a[: ], $b[: ], $n[: ]) Example let v3 := mulmod(v0, v1, v2) Operands Name Type Notes a i256 First factor. b i256 Second factor. n i256 Modulus; 0 yields 0. Result and purity Result Purity i256 — conservative Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mulmod","id":"133","title":"mulmod"},"134":{"body":"( Expression::Unary with UnaryOperation::IsZero) Description Returns 1 if the operand is 0, else 0. Also serves as the logical NOT for boolean values. Syntax iszero($operand[: ]) Example let v1: i1 := iszero(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » iszero","id":"134","title":"iszero"},"135":{"body":"( Expression::Unary with UnaryOperation::Not) Description Bitwise complement. Inverts every bit; equivalent to xor(operand, 2^256 - 1). Syntax not($operand[: ]) Example let v1 := not(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i256 — the complement fills the full word regardless of operand width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » not","id":"135","title":"not"},"136":{"body":"( Expression::Unary with UnaryOperation::Clz) Description Count leading zeros. Returns the number of leading zero bits in the operand, where a value of 0 returns 256 (the full width). Not an EVM opcode; reaches newyork as a Yul builtin ( FunctionName::Clz) and is translated directly by the Yul-to-newyork translator. Syntax clz($operand[: ]) Example let v1 := clz(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i256 — in practice the value fits in nine bits (max 256), so type inference often narrows further Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » clz","id":"136","title":"clz"},"137":{"body":"( Expression::Truncate) Description Reinterpret a wider integer as a narrower one by discarding the upper bits. The destination width is carried in the IR’s to: BitWidth field and is rendered inside the angle brackets of the printer mnemonic. Narrowing-only; the source width must be greater than or equal to the destination width. Syntax truncate>($value[: ]) Example let v1: i64 := truncate(v0)\\nlet v2: i8 := truncate(v1: i64) Operands Name Type Notes value i256 Source value; must be at least as wide as the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None. The destination width is part of the operation name, not a debug annotation.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » truncate>","id":"137","title":"truncate>"},"138":{"body":"( Expression::ZeroExtend) Description Reinterpret a narrower integer as a wider one by zero-filling the upper bits. The destination width is carried in the IR’s to: BitWidth field. Widening-only. Syntax zext>($value[: ]) Example let v1 := zext(v0: i8) Operands Name Type Notes value i256 Source value; must be no wider than the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » zext>","id":"138","title":"zext>"},"139":{"body":"( Expression::SignExtendTo) Description Reinterpret a narrower signed integer as a wider one by sign-extending the high bit. The destination width is carried in the IR’s to: BitWidth field. Distinct from signextend ( Expression::Binary), which is the EVM byte-position primitive; this one specifies the destination width directly and is introduced by passes that produce a sign-extended value at a known target width. Syntax sext>($value[: ]) Example let v1 := sext(v0: i64) Operands Name Type Notes value i256 Source value; must be no wider than the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sext>","id":"139","title":"sext>"},"14":{"body":"--stack-size PVM is a register machine with a traditional stack memory space for local variables. This controls the total amount of stack space the contract can use. You are incentivized to keep this value as small as possible: Increasing the stack size will increase gas costs due to increased startup costs. The stack size contributes to the total memory size a contract can use, which includes the contract’s code size. Default value: 131072 Warning If the contract uses more stack memory than configured, it will compile fine but eventually revert execution at runtime!","breadcrumbs":"resolc user guide » Command Line Interface » Stack size","id":"14","title":"Stack size"},"140":{"body":"( Expression::Keccak256) Description Compute the Keccak-256 hash of length bytes of emulated EVM linear memory starting at offset. The general-purpose hashing primitive; the specialized variants below cover the common scratch-space patterns more compactly. Syntax keccak256($offset[: ], $length[: ]) Example let v2 := keccak256(v0, v1) Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. length i256 Length of the region to hash, in bytes; forward analysis widens to at least i64. Result and purity Result Purity i256 Pure — the hash is a deterministic function of the memory contents at evaluation time. Passes that hoist or dedupe must respect intervening memory writes. Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256","id":"140","title":"keccak256"},"141":{"body":"( Expression::Keccak256Pair) Description Compound hash of two 256-bit words. Equivalent to mstore(0, word0); mstore(32, word1); keccak256(0, 64) but emitted as a single outlined call after mem_opt’s keccak fusion recognizes the pattern. The mapping-key idiom; see also mapping_sload. Syntax keccak256_pair($word0[: ], $word1[: ]) Example let v2 := keccak256_pair(v0, v1) Operands Name Type Notes word0 i256 First word; the high 32 bytes of the hash input. word1 i256 Second word; the low 32 bytes of the hash input. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256_pair","id":"141","title":"keccak256_pair"},"142":{"body":"( Expression::Keccak256Single) Description Compound hash of a single 256-bit word. Equivalent to mstore(0, word0); keccak256(0, 32) but emitted as a single outlined call after mem_opt’s keccak fusion. Syntax keccak256_single($word0[: ]) Example let v1 := keccak256_single(v0) Operands Name Type Notes word0 i256 The word to hash. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256_single","id":"142","title":"keccak256_single"},"143":{"body":"( Expression::Caller) Description Address of the immediate caller of the current call frame. Syntax caller() Example let v0: i160 := caller() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » caller","id":"143","title":"caller"},"144":{"body":"( Expression::CallValue) Description Value (wei) attached to the current call. Syntax callvalue() Example let v0 := callvalue() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » callvalue","id":"144","title":"callvalue"},"145":{"body":"( Expression::Origin) Description Address of the original externally owned account that initiated the transaction. Syntax origin() Example let v0: i160 := origin() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » origin","id":"145","title":"origin"},"146":{"body":"( Expression::Address) Description Address of the contract executing the current call frame. Syntax address() Example let v0: i160 := address() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » address","id":"146","title":"address"},"147":{"body":"( Expression::ChainId) Description Chain identifier of the network the contract is executing on. Syntax chainid() Example let v0 := chainid() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » chainid","id":"147","title":"chainid"},"148":{"body":"( Expression::Gas) Description Remaining gas at the point of evaluation. Modeled as a pure expression for IR purposes; in practice it changes between evaluations, so any simplifier that deduplicates pure expressions must respect gas as a barrier. Syntax gas() Example let v0: i64 := gas() Operands None. Result and purity Result Purity i64 Pure (per IR; see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gas","id":"148","title":"gas"},"149":{"body":"( Expression::MSize) Description Highest byte offset of emulated EVM linear memory that has been touched, rounded up to the next 32-byte boundary. Unlike gas, classified as side-effectful by the simplifier: unused msize() bindings are not eliminated, because the result depends on the program’s memory-access history and would change if the surrounding statements were reordered. Syntax msize() Example let v0: i64 := msize() Operands None. Result and purity Result Purity i64 Effectful (see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » msize","id":"149","title":"msize"},"15":{"body":"--heap-size Unlike the EVM, due to the lack of dynamic memory metering, PVM contracts emulate the EVM heap memory with a static buffer. Consequentially, instead of infinite memory with exponentially growing gas costs, PVM contracts have a finite amount of memory with constant gas costs available. You are incentivized to keep this value as small as possible:\\n1.Increasing the heap size will increase startup costs.\\n2.The heap size contributes to the total memory size a contract can use, which includes the contract’s code size Default value: 131072 Warning If the contract uses more heap memory than configured, it will compile fine but eventually revert execution at runtime!","breadcrumbs":"resolc user guide » Command Line Interface » Heap size","id":"15","title":"Heap size"},"150":{"body":"( Expression::Coinbase) Description Address of the block’s coinbase (block author). Syntax coinbase() Example let v0: i160 := coinbase() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » coinbase","id":"150","title":"coinbase"},"151":{"body":"( Expression::Timestamp) Description Block timestamp, as a Unix epoch second. Syntax timestamp() Example let v0: i64 := timestamp() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » timestamp","id":"151","title":"timestamp"},"152":{"body":"( Expression::Number) Description Current block number. Syntax number() Example let v0: i64 := number() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » number","id":"152","title":"number"},"153":{"body":"( Expression::Difficulty) Description Pre-merge block difficulty. On post-merge chains this is the block’s prevrandao value. Syntax difficulty() Example let v0 := difficulty() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » difficulty","id":"153","title":"difficulty"},"154":{"body":"( Expression::GasLimit) Description Block gas limit. Syntax gaslimit() Example let v0: i64 := gaslimit() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gaslimit","id":"154","title":"gaslimit"},"155":{"body":"( Expression::BaseFee) Description Current block’s EIP-1559 base fee per gas. Syntax basefee() Example let v0 := basefee() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » basefee","id":"155","title":"basefee"},"156":{"body":"( Expression::BlobBaseFee) Description Current block’s EIP-4844 blob base fee per gas. Syntax blobbasefee() Example let v0 := blobbasefee() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blobbasefee","id":"156","title":"blobbasefee"},"157":{"body":"( Expression::BlobHash) Description Versioned hash of the blob at the given index in the current transaction’s blob list. Syntax blobhash($index[: ]) Example let v1 := blobhash(v0) Operands Name Type Notes index i256 Blob index; forward analysis widens to at least i64. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blobhash","id":"157","title":"blobhash"},"158":{"body":"( Expression::BlockHash) Description Hash of the block with the given number. Per EVM, valid only for the most recent 256 blocks; outside that range the result is 0. Syntax blockhash($number[: ]) Example let v1 := blockhash(v0) Operands Name Type Notes number i256 Block number; forward analysis widens to i256. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blockhash","id":"158","title":"blockhash"},"159":{"body":"( Expression::SelfBalance) Description Balance (in wei) of the contract executing the current call frame. Cheaper than balance(address()). Syntax selfbalance() Example let v0 := selfbalance() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » selfbalance","id":"159","title":"selfbalance"},"16":{"body":"--solc Specify the path to the solc executable. By default, the one in ${PATH} is used.","breadcrumbs":"resolc user guide » Command Line Interface » solc","id":"16","title":"solc"},"160":{"body":"( Expression::GasPrice) Description Effective gas price of the current transaction. Syntax gasprice() Example let v0 := gasprice() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gasprice","id":"160","title":"gasprice"},"161":{"body":"( Expression::CallDataLoad) Description Read 32 bytes from the current call’s calldata at the given offset. Reads past the end of calldata return zero bytes. Syntax calldataload($offset[: ]) Example let v1 := calldataload(v0) Operands Name Type Notes offset i256 Byte offset into calldata. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldataload","id":"161","title":"calldataload"},"162":{"body":"( Expression::CallDataSize) Description Length of the current call’s calldata, in bytes. Syntax calldatasize() Example let v0: i64 := calldatasize() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldatasize","id":"162","title":"calldatasize"},"163":{"body":"( Expression::ReturnDataSize) Description Length of the most recently returned data buffer from a sub-call, in bytes. Modeled as pure per IR but reflects the last ExternalCall / Create result; consumers must respect that ordering. Syntax returndatasize() Example let v0: i64 := returndatasize() Operands None. Result and purity Result Purity i64 Pure (per IR; see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » returndatasize","id":"163","title":"returndatasize"},"164":{"body":"( Expression::CodeSize) Description Size of the currently executing code, in bytes. Syntax codesize() Example let v0: i64 := codesize() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » codesize","id":"164","title":"codesize"},"165":{"body":"( Expression::ExtCodeSize) Description Size of the code deployed at the given address, in bytes. Returns 0 for accounts with no deployed code. Syntax extcodesize($address[: ]) Example let v1: i64 := extcodesize(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodesize","id":"165","title":"extcodesize"},"166":{"body":"( Expression::ExtCodeHash) Description Keccak-256 hash of the code deployed at the given address. Returns 0 for non-existent accounts. Syntax extcodehash($address[: ]) Example let v1 := extcodehash(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodehash","id":"166","title":"extcodehash"},"167":{"body":"( Expression::Balance) Description Balance (in wei) of the given account address. Use selfbalance for the contract executing the current call frame (cheaper). Syntax balance($address[: ]) Example let v1 := balance(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » balance","id":"167","title":"balance"},"168":{"body":"( Expression::MLoad) Description Read a 32-byte word from emulated EVM linear memory at offset. The word is read big-endian per EVM semantics. Pure per IR, but reads after writes return the new value; the memory passes track read/write dependencies separately. Syntax mload($offset[: ]) [/* */] Example let v1 := mload(v0: i64)\\nlet v2: i32 := mload(v3: i64) /* free_ptr */ Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. Result and purity Result Purity i32 when region is FreePointerSlot; i256 otherwise Pure (per IR; see Description) Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Same tagging rules as mstore. The region also determines the result width: a load from FreePointerSlot produces an i32 since the FMP fits in a pointer-sized word.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mload","id":"168","title":"mload"},"169":{"body":"( Expression::SLoad) Description Read a 32-byte word from persistent contract storage at the given key. Pure per IR; reads after writes to the same slot return the new value. Syntax sload($key[: ]) [/* slot: 0x */] Example let v1 := sload(v0)\\nlet v2 := sload(v3) /* slot: 0x0 */ Operands Name Type Notes key i256 Storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations Source field Printed as static_slot: Option /* slot: 0x */ when set; suppressed otherwise Same tagging rules as sstore. The printer renders the annotation whenever the field is Some and the deduplicator’s canonicalizer partitions signatures by slot; no pass currently writes Some(...), however, so in present-day dumps the annotation is dormant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sload","id":"169","title":"sload"},"17":{"body":"--debug-output-dir Dump all intermediary compiler artifacts to files in the specified directory. This includes the Yul IR, optimized and unoptimized LLVM IR, the ELF object and the PVM assembly. When the newyork pipeline is active, the newyork IR is additionally dumped (the final IR, a pre-late-pass snapshot, and heap and memory optimization data). Useful for debugging and development purposes.","breadcrumbs":"resolc user guide » Command Line Interface » Debug artifacts","id":"17","title":"Debug artifacts"},"170":{"body":"( Expression::TLoad) Description Read a 32-byte word from transient storage at the given key. Transient storage is wiped at the end of the transaction; pair with tstore. Syntax tload($key[: ]) Example let v1 := tload(v0) Operands Name Type Notes key i256 Transient storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations None. The IR does not track a static slot for tload.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » tload","id":"170","title":"tload"},"171":{"body":"( Expression::MappingSLoad) Description Compound load for a Solidity mapping element. Equivalent to mstore(0, key); mstore(32, slot); sload(keccak256(0, 64)) but emitted as a single outlined call after the mapping_access_outlining pass recognizes the pattern (it fuses a keccak256_pair — itself produced by mem_opt’s keccak fusion — followed by an sload whose key has a single consumer). Only valid when the intermediate hash is used exclusively by this load. Syntax mapping_sload($key[: ], $slot[: ]) Example let v2 := mapping_sload(v0: i160, v1) Operands Name Type Notes key i256 Mapping key; often narrowed to i160 for address keys. slot i256 The mapping’s declared storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations None. The fused statement’s effective storage slot is the keccak hash of the key and the declared slot, which is never a compile-time constant; no static_slot hint is surfaced.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mapping_sload","id":"171","title":"mapping_sload"},"172":{"body":"( Expression::DataOffset) Description Offset of a named data segment within the deployed code. The identifier is a string carried in the IR’s id: String field; the linker resolves it to a concrete offset. Syntax dataoffset(\\"\\") Example let v0 := dataoffset(\\"MyContract_deployed\\") Operands None — the identifier is a quoted string literal in the syntax position, not an operand. Result and purity Result Purity i256 Pure Annotations Source field Printed as id: String The quoted identifier in the syntax position (not a comment annotation; it is the expression itself).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » dataoffset","id":"172","title":"dataoffset"},"173":{"body":"( Expression::DataSize) Description Size of a named data segment within the deployed code, in bytes. The identifier is resolved by the linker. Syntax datasize(\\"\\") Example let v0: i64 := datasize(\\"MyContract_deployed\\") Operands None — the identifier is a quoted string literal in the syntax position, not an operand. Result and purity Result Purity i64 Pure Annotations Source field Printed as id: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » datasize","id":"173","title":"datasize"},"174":{"body":"( Expression::LoadImmutable) Description Read the value of a named immutable variable. Immutables are written once during contract construction by SetImmutable and read afterwards via this expression. Syntax loadimmutable(\\"\\") Example let v0 := loadimmutable(\\"MyContract.owner\\") Operands None — the key is a quoted string literal in the syntax position. Result and purity Result Purity i256 Pure Annotations Source field Printed as key: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » loadimmutable","id":"174","title":"loadimmutable"},"175":{"body":"( Expression::LinkerSymbol) Description Address of an external library, resolved by the linker. The path encodes the library’s source location and identifier. Syntax linkersymbol(\\"\\") Example let v0: i160 := linkersymbol(\\"contracts/Library.sol:L\\") Operands None — the path is a quoted string literal in the syntax position. Result and purity Result Purity i160 Pure Annotations Source field Printed as path: String The quoted path in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » linkersymbol","id":"175","title":"linkersymbol"},"176":{"body":"( Expression::Call; the printer emits func_ when no function name is registered) Description Internal function call. Invokes a user-defined function declared earlier in the same object; the mnemonic is the function’s Yul-level name, or func_ if the printer has no name registered for the FunctionId. Distinct from call and the other EVM call-opcode statements, which cross the contract boundary. Syntax ([$argument_0[: ], $argument_1[: ], …]) Example let v3 := abi_decode_uint256(v0, v1, v2)\\nlet v4, v5 := returns_two(v0) // multi-return via let multi-binding Operands Name Type Notes arguments Vec Zero or more argument values, in declaration order; each operand may carry a : suffix. Result and purity Result Purity One or more values, widths taken from the callee’s declared return types (or the inferred return widths, narrowed via the interprocedural pass). Falls back to i256 when the callee’s returns are unknown to type inference. Effectful — the simplifier treats every call as side-effectful regardless of callee body, so unused call bindings are not DCE’d. The transitive purity of the callee is not tracked at the IR level. Annotations Source field Printed as function: FunctionId The callee’s name in the syntax position (or func_ if the printer has no name registered).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » ","id":"176","title":""},"177":{"body":"The operations in this section all modify external state: emulated EVM linear memory, persistent storage, or transient storage. They are statements (not expressions) and they are never pure. Simplification and deduplication never reorder them with respect to each other or with respect to reverts; the memory passes treat them as the side-effect boundary for their analyses.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Memory and storage writes","id":"177","title":"Memory and storage writes"},"178":{"body":"( Statement::MStore) Description Write a 32-byte word to emulated EVM linear memory at offset. The word is stored big-endian, matching EVM semantics; the codegen handles the byte swap on PolkaVM’s little-endian RISC-V target. Syntax mstore($offset[: ], $value[: ]) [/* */] Example mstore(v0, v1) // Unknown region; no annotation printed\\nmstore(v2, v3) /* scratch */ // offset proven to land in 0x00..0x3f\\nmstore(v4, v5) /* free_ptr */ // offset is exactly 0x40 Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. value i256 The 32-byte word to store. Narrower values are zero-extended at codegen time. Result and purity Result Purity None Effectful Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Assigned at translation time from the constant offset (if any); consumed by mem_opt, FMP propagation, and byte-swap mode selection.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mstore","id":"178","title":"mstore"},"179":{"body":"( Statement::MStore8) Description Write a single byte to emulated EVM linear memory at offset. The low 8 bits of value are stored; the upper bits are ignored. The operation is otherwise identical to mstore: same operand shape, same region tag, same side-effect classification. Syntax mstore8($offset[: ], $value[: ]) [/* */] Example mstore8(v0, v1: i8) Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. value i256 Only the low 8 bits are stored. Often narrowed to i8 by type inference. Result and purity Result Purity None Effectful Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Same tagging rules as mstore. Most mstore8s carry an Unknown region in practice because single-byte writes typically target offsets the translator cannot prove constant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mstore8","id":"179","title":"mstore8"},"18":{"body":"-g Generate source based debug information in the output code file. Useful for debugging and development purposes and disabled by default.","breadcrumbs":"resolc user guide » Command Line Interface » Debug info","id":"18","title":"Debug info"},"180":{"body":"( Statement::MCopy) Description Copy length bytes from src to dest within emulated EVM linear memory. The Yul builtin mcopy maps directly onto this statement; unlike mstore, it does not carry a region tag because the source and destination ranges may straddle multiple regions. Syntax mcopy($dest[: ], $src[: ], $length[: ]) Example mcopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. src i256 Source byte offset in linear memory. length i256 Number of bytes to copy. Overlapping ranges follow EVM-defined memmove semantics. Result and purity Result Purity None Effectful Annotations None. mcopy carries no region tag because the source and destination ranges may straddle multiple regions, and no static-slot hint because the copy is not storage-bound.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mcopy","id":"180","title":"mcopy"},"181":{"body":"( Statement::SStore) Description Write a 32-byte word to persistent contract storage at key. The operation is the durable counterpart of mstore: the value survives across transactions and is observable to subsequent calls to the contract. Syntax sstore($key[: ], $value[: ]) [/* slot: 0x */] Example sstore(v0, v1)\\nsstore(v2, v3) /* slot: 0x0 */ Operands Name Type Notes key i256 Storage slot. May be a constant slot, a keccak-derived slot for mappings or dynamic arrays, or an arbitrary expression. value i256 The 256-bit word to store. Result and purity Result Purity None Effectful Annotations Source field Printed as static_slot: Option /* slot: 0x */ when set; suppressed otherwise The printer renders the annotation whenever the field is Some, and the deduplicator’s canonicalizer and mapping-fusion analyses consume it as part of the signature. No pass currently writes Some(...), so the annotation is dormant in present-day dumps; when absent, alias and dedup analyses fall back to the conservative “may alias any slot” assumption.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sstore","id":"181","title":"sstore"},"182":{"body":"( Statement::TStore) Description Write a 32-byte word to transient storage at key. Transient storage is wiped at the end of the transaction, so tstore is the right primitive for per-transaction bookkeeping (reentrancy guards, cached results) without the gas cost of sstore on EVM. On PolkaVM the transient backing store is provided by pallet-revive. Syntax tstore($key[: ], $value[: ]) Example tstore(v0, v1) Operands Name Type Notes key i256 Transient storage slot. value i256 The 256-bit word to store. Result and purity Result Purity None Effectful Annotations None. Unlike sstore, the IR does not track a static slot for tstore: transient storage’s short-lived lifetime makes the slot-aware optimizations less valuable, and the translator does not produce the annotation.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » tstore","id":"182","title":"tstore"},"183":{"body":"( Statement::MappingSStore) Description Compound store for a Solidity mapping element. Equivalent to mstore(0, key); mstore(32, slot); sstore(keccak256(0, 64), value) but emitted as a single outlined statement after the mapping_access_outlining pass recognizes the pattern (it fuses a keccak256_pair followed by an sstore whose key has a single consumer). Only valid when the intermediate hash is not observed by any other statement. Syntax mapping_sstore($key[: ], $slot[: ], $value[: ]) Example mapping_sstore(v0, v1, v2) Operands Name Type Notes key i256 Mapping key. The outlining pass force-widens it to i256, so it always prints at full width, even for address keys. slot i256 The mapping’s declared storage slot. Typically a small constant. value i256 The value to store at the computed storage location. Result and purity Result Purity None Effectful Annotations None. mapping_sstore deliberately drops the static_slot annotation that the original sstore may have carried, because the fused statement’s effective slot is the keccak hash of the key and the declared slot, which is never a compile-time constant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mapping_sstore","id":"183","title":"mapping_sstore"},"184":{"body":"Multi-byte memory copies from the EVM-accessible byte sources (code, external code, returndata, embedded data, and calldata) into emulated EVM linear memory. They all take the same shape: a destination memory offset, a source offset, and a length. They are effectful and act as opaque barriers to the memory passes.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Bulk copies","id":"184","title":"Bulk copies"},"185":{"body":"( Statement::CodeCopy) Description Copy length bytes from the currently executing code at offset into emulated EVM linear memory at dest. Reads past the end of code yield zero bytes. Syntax codecopy($dest[: ], $offset[: ], $length[: ]) Example codecopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the executing code. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » codecopy","id":"185","title":"codecopy"},"186":{"body":"( Statement::ExtCodeCopy) Description Copy length bytes from the code at address starting at offset into emulated EVM linear memory at dest. Reads beyond the code yield zero bytes; non-existent accounts yield all zeros. Syntax extcodecopy($address[: ], $dest[: ], $offset[: ], $length[: ]) Example extcodecopy(v0: i160, v1, v2, v3) Operands Name Type Notes address i256 Account whose code to read; forward analysis widens to at least i160. dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the external code. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodecopy","id":"186","title":"extcodecopy"},"187":{"body":"( Statement::ReturnDataCopy) Description Copy length bytes from the most recent sub-call’s return data starting at offset into emulated EVM linear memory at dest. Per EVM, reads past the return data’s end revert; the memory passes treat this as a potential trap site. Syntax returndatacopy($dest[: ], $offset[: ], $length[: ]) Example returndatacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the return-data buffer. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful (may revert on out-of-range reads, per EVM) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » returndatacopy","id":"187","title":"returndatacopy"},"188":{"body":"( Statement::DataCopy) Description Copy length bytes from an embedded data segment starting at offset into emulated EVM linear memory at dest. The source segment is resolved by the linker, typically used to pull constants compiled into the bytecode into runtime memory. Syntax datacopy($dest[: ], $offset[: ], $length[: ]) Example datacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the data segment. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » datacopy","id":"188","title":"datacopy"},"189":{"body":"( Statement::CallDataCopy) Description Copy length bytes from the current call’s calldata starting at offset into emulated EVM linear memory at dest. Reads past the end of calldata yield zero bytes. Syntax calldatacopy($dest[: ], $offset[: ], $length[: ]) Example calldatacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in calldata. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldatacopy","id":"189","title":"calldatacopy"},"19":{"body":"--link [--libraries ] In Solidity, 3 things can happen with libraries: They are not externally callable and thus can be inlined. The solc Solidity optimizer inlines those (usually the case). Note: resolc always activates the solc Solidity optimizer. If the solc Solidity optimizer is disabled or for some reason fails to inline them (both rare), they are not inlined and require linking. They are externally callable but still linked at compile time. This is the case if at compile time the library address is known (i.e. --libraries supplied in CLI or the corresponding setting in STD JSON input). They are linked at deploy time. This happens when the compiler does not know the library address (i.e. --libraries flag is missing or the provided libraries are incomplete, same for STD JSON input). This case is rare because it’s discourage and should never be used by production dApps. In cases 1.2 and 3: Some of the produced code blobs will be in the “unlinked” raw ELF object format and not yet deployable. To make them deployable, they need to be “linked” (done using the resolc --link linker mode explained below). The compiler emitted DELEGATECALL instructions to call non-inlined (unlinked) libraries. The contract deployer must make sure to deploy any libraries prior to contract deployment. Warning Using deploy time linking is officially discouraged. Mainly due to bytecode hashes changing after the fact. We decided to support it in resolc regardless, due to popular request. Similar to how it works in solc, --libraries may be used to provide libraries during linking mode. Unlike with solc, where linking implies a simple string substitution mechanism, resolc needs to resolve actual missing ELF symbols. This is due to how factory dependencies work in PVM. As a consequence, it isn’t sufficient to just provide the unlinked blobs to the linker. Instead, they must be provided in the exact same directory structure the Solidity source code was found during compile time. Example: The contract src/foo/bar.sol:Bar is involved in deploy time linking. It may be a factory dependency. The contract blob needs to be provided inside a relative src/foo/ directory to --link. Otherwise symbol resolution may fail. Note Tooling is supposed to take care of this. In the future, we may append explicit linkage data to simplify the deploy time linking feature.","breadcrumbs":"resolc user guide » Command Line Interface » Deploy time linking","id":"19","title":"Deploy time linking"},"190":{"body":"The statements that bind SSA values, hold loose expressions evaluated for their side effects, and write to immutable storage. Every pure expression in this reference’s earlier sections appears on the right-hand side of one of these statements (almost always let).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Bindings and wrappers","id":"190","title":"Bindings and wrappers"},"191":{"body":"( Statement::Let) Description SSA binding: evaluate an expression and bind its result(s) to a list of fresh value ids. The let statement is the only mechanism by which pure expressions enter the value namespace; every v in a dump was produced by a let (or by a value-yielding control-flow statement or by a parameter at function entry). Syntax let $binding_0[, $binding_1, …] := $expression Example let v3 := add(v0, v1)\\nlet v4, v5 := if v2 [v0, v1] { … } else { … } // multi-binding from a value-yielding If Operands Name Type Notes bindings Vec One or more fresh SSA ids to bind. Most expressions produce one value; control-flow statements may produce several. value Expression The right-hand side; see any of the Pure expression entries. Result and purity Result Purity None directly — the bound ids carry the expression’s result(s) Effectful (binding establishment); the right-hand side’s purity is independent Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » let","id":"191","title":"let"},"192":{"body":"( Statement::Expression) Description Wraps an expression evaluated for its observable consequences but whose value is not bound. Typically a zero-return (void) user-defined function call ( Expression::Call) evaluated for its side effects, or the discarded void result of a Yul builtin used as a statement (a value-producing expression is bound by a let instead). EVM external calls ( call, delegatecall, etc.) and contract creation ( create, create2) translate to dedicated Statement::ExternalCall and Statement::Create variants, not through this wrapper. Syntax $expression Example update_balance(v0) // void function called for its side effects Operands Name Type Notes expression Expression Any expression; result is discarded. Result and purity Result Purity None Effectful (per its statement position) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Expression statement","id":"192","title":"Expression statement"},"193":{"body":"( Statement::SetImmutable) Description Write an immutable variable during contract construction. Immutables are written once in the constructor and read later via loadimmutable. The key is a string identifier resolved by the linker. Syntax setimmutable(\\"\\", $value[: ]) Example setimmutable(\\"MyContract.owner\\", v0) Operands Name Type Notes value i256 The value to store; the key is a quoted string literal in the syntax position. Result and purity Result Purity None Effectful Annotations Source field Printed as key: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » setimmutable","id":"193","title":"setimmutable"},"194":{"body":"The IR’s control flow is structured: if, switch, and for are statements with explicit nested regions, each carrying input values and yielding output values. The jump-like statements ( break, continue, leave) are scoped to their nearest enclosing construct. Nested blocks create lexical scope without otherwise changing control flow.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Structured control flow","id":"194","title":"Structured control flow"},"195":{"body":"( Statement::If) Description Conditional execution with optional value yields. The then region runs when condition is non-zero; the else region runs otherwise. If outputs is non-empty, both regions must yield the same number of values and the statement is bound by a let. Syntax if $condition[: ] [[$input_0, $input_1, …]] { … } [else { … }] Example if v0: i1 { sstore(v1, v2)\\n} let v5, v6 := if v3: i1 [v1, v2] { let v7: i64 := 0x1 // add widens its operands to the i64 register width let v8 := add(v2, v7: i64) yield v1, v8\\n} else { yield v1, v2\\n} Operands Name Type Notes condition i256 Branch selector; non-zero takes the then region. Often narrowed to i1. inputs Vec Values threaded into both regions, printed in square brackets after the condition. (regions) — The then_region is mandatory; the else_region is optional and, when absent, implicitly yields the inputs unchanged. Result and purity Result Purity None for the statement form; for the value-yielding form, one value per outputs binding, types taken from the yielded values Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » if","id":"195","title":"if"},"196":{"body":"( Statement::Switch) Description Multi-way dispatch on a scrutinee value. Each case matches a specific constant and runs its region; an optional default region catches non-matching values. Like if, switch may yield values via outputs and accept thread-through values via inputs. Syntax switch $scrutinee[: ] [[$input_0, …]]\\ncase 0x { …\\n}\\n[case 0x { …\\n} …]\\n[default { …\\n}] Example switch v0\\ncase 0x0 { sstore(v1, v2)\\n}\\ncase 0x1 { sstore(v1, v3)\\n}\\ndefault { invalid()\\n} Operands Name Type Notes scrutinee i256 The value to compare against each case. inputs Vec Values threaded into every case and default region. cases Vec Each case carries a constant value: BigUint and a region. (default) — Optional fall-through region. Result and purity Result Purity None for the statement form; one value per outputs binding for the value-yielding form Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » switch","id":"196","title":"switch"},"197":{"body":"( Statement::For) Description Structured loop with explicit loop-carried variables. Each iteration evaluates condition_statements followed by condition; if the condition is non-zero, the body region runs, then the post region runs, and the loop iterates. Loop-carried variables are passed as SSA values through each region. break exits the loop and continue jumps to the post region. Syntax for { $variable_0 := $initial_0[, …] } [// condition statements: …] condition: $condition post [($post_input_variable_0[, …])] { … } body { … body … } Example let v0: i1 := 0x0\\nlet v6 := for { v1 := v0: i1 } // condition statements: let v2: i8 := 0xa condition: lt(v1, v2: i8) post (v3) { let v4: i64 := 0x1 let v5 := add(v3, v4: i64) yield v5 } body { sstore(v1, v1) 0x0: void yield v1 } Operands Name Type Notes initial_values Vec Starting values for the loop-carried variables. loop_variables Vec SSA ids visible inside condition, body, and post. condition_statements Vec Statements evaluated each iteration before the condition expression; emitted into the loop header block. Printed only when non-empty, behind a // condition statements: comment. condition Expression Re-evaluated each iteration; non-zero continues, zero exits. body Region Loop body; yields current loop-carried values. post_input_variables Vec Input SSA ids for the post region (one per loop-carried variable); receive the body’s yielded values merged with continue-site values via phi nodes in the LLVM codegen. post Region Runs after each body iteration (and after continue); yields updated loop-carried values. outputs Vec Final loop-carried values after exit. Result and purity Result Purity None for the statement form; one value per outputs binding for the value-yielding form Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » for","id":"197","title":"for"},"198":{"body":"( Statement::Break) Description Exit the innermost enclosing for loop. Carries the current values of loop-carried variables at the break point; these become the loop’s outputs. Syntax break Example if v0 { break [v1, v2] } Operands The loop-carried values: Vec print in brackets when non-empty (e.g. break [v1, v2]). Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » break","id":"198","title":"break"},"199":{"body":"( Statement::Continue) Description Skip to the post region of the innermost enclosing for loop. Like break, carries the current values of loop-carried variables internally. Syntax continue Example if v0 { continue [v1, v2] } Operands The loop-carried values print in brackets when non-empty (e.g. continue [v1, v2]). Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » continue","id":"199","title":"continue"},"2":{"body":"Head to contracts.polkadot.io for more general information about contracts on Polkadot.","breadcrumbs":"Welcome » Other Polkadot contracts resources","id":"2","title":"Other Polkadot contracts resources"},"20":{"body":"The resolc compiler driver is published as an NPM package under @parity/resolc. It’s usable from Node.js code or directly from the command line: npx @parity/resolc@latest --bin crates/integration/contracts/flipper.sol -o /tmp/out Note While the npm package makes a nice portable option, it doesn’t expose all options.","breadcrumbs":"resolc user guide » JS NPM package » JS NPM package","id":"20","title":"JS NPM package"},"200":{"body":"( Statement::Leave) Description Exit the current function, returning the listed values as the function’s return values. The Yul-level leave keyword translates directly to this statement; the inlining pass eliminates intra-function leaves where possible via the exit-flag transformation. Syntax leave [[$value_0[: ], $value_1[: ], …]] Example leave [v0, v1] // returns v0 and v1 from the function\\nleave // returns nothing (void function) Operands Name Type Notes return_values Vec Empty for void functions; otherwise one entry per declared return. Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » leave","id":"200","title":"leave"},"201":{"body":"( Statement::Block) Description A lexical scope without conditional or iterative behavior. The body is a region; control falls through after the region’s statements complete. Used to bound the visibility of inner bindings. Syntax { …\\n} Example { let v0 := add(v1, v2) sstore(v3, v0)\\n} // v0 is no longer in scope here Operands None — the body is a region, not an operand. Result and purity Result Purity None Effectful (per the body’s contents) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Nested block","id":"201","title":"Nested block"},"202":{"body":"Statements that cross the contract boundary: external calls, contract creation, and event log emission. All produce or rely on external state and act as barriers to memory and storage analyses.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » External interaction","id":"202","title":"External interaction"},"203":{"body":"( Statement::ExternalCall with CallKind::Call) Description Standard external call that may transfer value. Reads args_length bytes from emulated EVM linear memory at args_offset as calldata, executes the target, and writes up to ret_length bytes of return data into linear memory at ret_offset. The boolean result indicates success. Syntax let $result := call($gas[: ], $address[: ], $value[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v8 := call(v0: i64, v1: i160, v2, v3: i64, v4: i64, v5: i64, v6: i64) Operands Name Type Notes gas i256 Gas to forward to the target; forward analysis widens to at least i64. address i256 Callee address; forward analysis widens to at least i160. value i256 Wei to transfer with the call. args_offset i256 Calldata source offset in linear memory; forward analysis widens to at least i64. args_length i256 Calldata length in bytes; forward analysis widens to at least i64. ret_offset i256 Return-data destination offset in linear memory; forward analysis widens to at least i64. ret_length i256 Maximum return-data length; forward analysis widens to at least i64. Result and purity Result Purity i256 (success flag: 1 on success, 0 on revert/error; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » call","id":"203","title":"call"},"204":{"body":"( Statement::ExternalCall with CallKind::CallCode) Description Deprecated EVM opcode that executes the callee’s code in the caller’s context but with the callee’s storage. Not supported by the newyork backend (codegen rejects it); use delegatecall instead. Syntax let $result := callcode($gas[: ], $address[: ], $value[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v8 := callcode(v0: i64, v1: i160, v2, v3: i64, v4: i64, v5: i64, v6: i64) Operands Same shape as call. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » callcode","id":"204","title":"callcode"},"205":{"body":"( Statement::ExternalCall with CallKind::DelegateCall) Description Execute the callee’s code in the caller’s context: same storage, same sender, same call value. The standard mechanism for library calls and proxy patterns. No value operand (the caller’s call value is inherited). Syntax let $result := delegatecall($gas[: ], $address[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v7 := delegatecall(v0: i64, v1: i160, v2: i64, v3: i64, v4: i64, v5: i64) Operands Same shape as call minus the value operand. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » delegatecall","id":"205","title":"delegatecall"},"206":{"body":"( Statement::ExternalCall with CallKind::StaticCall) Description Read-only external call. Any state modification in the callee (including nested calls) causes the call to revert. No value operand. Syntax let $result := staticcall($gas[: ], $address[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v7 := staticcall(v0: i64, v1: i160, v2: i64, v3: i64, v4: i64, v5: i64) Operands Same shape as call minus the value operand. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful (no state writes, but still an external boundary and may revert) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » staticcall","id":"206","title":"staticcall"},"207":{"body":"( Statement::Create with CreateKind::Create) Description Deploy a new contract with the given init-code bytes, transferring value wei from the caller. The new contract’s address is derived from the caller’s address and nonce; on failure the result is 0. Syntax let $result := create($value[: ], $offset[: ], $length[: ]) Example let v4 := create(v0, v1: i64, v2: i64) Operands Name Type Notes value i256 Wei to transfer to the new contract. offset i256 Linear-memory offset of the init code; forward analysis widens to at least i64. length i256 Length of the init code in bytes; forward analysis widens to at least i64. Result and purity Result Purity i256 (created address; narrowable to i160 on success, 0 on failure) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » create","id":"207","title":"create"},"208":{"body":"( Statement::Create with CreateKind::Create2) Description Deploy a new contract with a deterministic address derived from the caller’s address, the salt, and the init-code hash. Same operand shape as create plus an additional salt. Syntax let $result := create2($value[: ], $offset[: ], $length[: ], $salt[: ]) Example let v5 := create2(v0, v1: i64, v2: i64, v3) Operands Same as create plus salt: i256. Result and purity Result Purity i256 (created address; narrowable to i160 on success, 0 on failure) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » create2","id":"208","title":"create2"},"209":{"body":"( Statement::Log) Description Emit an event log entry. The mnemonic suffix is the number of indexed topics ( 0 through 4), determined by the length of the IR’s topics field. The data portion is read from length bytes of emulated EVM linear memory at offset. Syntax log($offset[: ], $length[: ][, $topic_0[: ], …]) Example log0(v0: i64, v1: i64) // no topics\\nlog2(v0: i64, v1: i64, v2, v3) // two topics Operands Name Type Notes offset i256 Data source offset in linear memory; forward analysis widens to at least i64. length i256 Data length in bytes; forward analysis widens to at least i64. topics Vec Zero to four indexed topic values; the length determines the mnemonic suffix. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » log","id":"209","title":"log"},"21":{"body":"resolc achieved successful integration with a variety of third party developer tools.","breadcrumbs":"resolc user guide » Tooling integration » Tooling integration","id":"21","title":"Tooling integration"},"210":{"body":"Statements that end the current call frame. Plain forms ( return, revert, stop), unconditional traps ( invalid, selfdestruct), and outlined revert variants ( panic_revert, error_string_revert, custom_error_revert) that encode common Solidity error patterns into single nodes that can be deduplicated across call sites.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Termination","id":"210","title":"Termination"},"211":{"body":"( Statement::Return) Description End the current call frame successfully, returning length bytes from emulated EVM linear memory at offset as the return data. Syntax return($offset[: ], $length[: ]) Example return(v0: i64, v1: i64) Operands Name Type Notes offset i256 Return-data source offset; forward analysis widens to at least i64. length i256 Return-data length; forward analysis widens to at least i64. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » return","id":"211","title":"return"},"212":{"body":"( Statement::Revert) Description End the current call frame with a revert, undoing all state changes made during the call, and returning length bytes of revert data from emulated EVM linear memory at offset. Syntax revert($offset[: ], $length[: ]) Example revert(v0: i64, v1: i64) Operands Name Type Notes offset i256 Revert-data source offset; forward analysis widens to at least i64. length i256 Revert-data length; forward analysis widens to at least i64. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » revert","id":"212","title":"revert"},"213":{"body":"( Statement::Stop) Description End the current call frame successfully with empty return data. Syntax stop() Example stop() Operands None. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » stop","id":"213","title":"stop"},"214":{"body":"( Statement::Invalid) Description Unconditional invalid-opcode trap. Consumes all remaining gas and reverts. Used for unreachable branches and assertion failures. Syntax invalid() Example invalid() Operands None. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » invalid","id":"214","title":"invalid"},"215":{"body":"( Statement::SelfDestruct) Description End the current call frame and transfer the contract’s remaining balance to address. Post-Cancun, the contract storage is not deleted (selfdestruct is effectively deprecated; the opcode still exists for legacy compatibility). Syntax selfdestruct($address[: ]) Example selfdestruct(v0: i160) Operands Name Type Notes address i256 Recipient of the contract’s balance; forward analysis widens to at least i160. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » selfdestruct","id":"215","title":"selfdestruct"},"216":{"body":"( Statement::PanicRevert) Description Outlined Solidity panic revert. Equivalent to writing the Panic(uint256) ABI encoding (selector 0x4e487b71 plus the panic code) into emulated EVM linear memory and reverting, but emitted as a single statement that lowers to one outlined helper call. Common panic codes: 0x01 assertion failure, 0x11 arithmetic overflow, 0x12 division by zero, 0x32 array-out-of-bounds, 0x41 memory overflow. Syntax panic_revert(0x) Example panic_revert(0x11) // arithmetic overflow Operands None — the panic code is stored as a u8 field on the IR, not an SSA operand. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as code: u8 The panic code in 0x form (two hex digits, zero-padded).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » panic_revert","id":"216","title":"panic_revert"},"217":{"body":"( Statement::ErrorStringRevert) Description Outlined Solidity Error(string) revert. Equivalent to writing the Error selector ( 0x08c379a0), the string offset and length, and up to four 32-byte data words into emulated EVM linear memory and reverting. The string length and the data words are stored as compile-time fields; no SSA operands. Syntax error_string_revert(, _words) Example error_string_revert(12, 1_words) // 12-byte string in one 32-byte word Operands None — the string length and data are compile-time fields, not SSA operands. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as length: u8 The string length in bytes, in the first syntax position. data: Vec The number of 32-byte data words (1–4), printed as _words in the second syntax position. The actual data is stored separately and not shown in the printed form.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » error_string_revert","id":"217","title":"error_string_revert"},"218":{"body":"( Statement::CustomErrorRevert) Description Outlined Solidity custom-error revert. Encodes the error selector (left-shifted by 224 bits) and zero or more argument values into scratch memory and reverts. No FMP load is needed; the encoding uses the scratch region at offset 0. Syntax custom_error_revert(0x, [$arg_0, $arg_1, …]) Example custom_error_revert(0xa28c4c11, [v0, v1]) Operands Name Type Notes arguments Vec Zero or more argument values; the selector is a compile-time field. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as selector: BigUint The 4-byte error selector in hex, in the first syntax position. The selector is stored left-shifted by 224 bits; the printer right-shifts it back and prints the bare 4-byte value.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » custom_error_revert","id":"218","title":"custom_error_revert"},"219":{"body":"The revive compiler targets PolkaVM (PVM) via pallet-revive on Polkadot.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » PVM and the pallet-revive runtime target","id":"219","title":"PVM and the pallet-revive runtime target"},"22":{"body":"Support for resolc is available in forks of the hardhat and foundry Solidity toolkits: The Parity Hardhat fork The Parity Foundry fork","breadcrumbs":"resolc user guide » Tooling integration » Solidity toolkits","id":"22","title":"Solidity toolkits"},"220":{"body":"The exact target CPU configuration can be found here. Note The PVM linker requires fully relocatable ELF objects.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Target CPU configuration","id":"220","title":"Target CPU configuration"},"221":{"body":"PVM is a RISC-V based VM designed to overcome the flaws of WebAssebmly (Wasm). Wasm was believed to be a more efficient successor to the rather slow EVM. However, Wasm is far from an ideal target for smart contracts as some of its design decisions are unfavorable for short-lived workloads. The main problem is on-chain Wasm bytecode compilation or interpretation overhead. Prior benchmarks consistently ignoring this overhead seeded the blockchain industry with flawed assumptions: Only when ignoring the startup overhead Wasm is much faster than the slow computing EVM. In practice however, gains are nullified entirely and Wasm loses completely even against very slow VMs like the EVM. Executing Wasm contracts is in fact so inefficient that typical contract workloads are orders of magnitude more expensive than the equivalent EVM variant. On the other hand, since RISC-V is similar to CPUs found in validator hardware (x86 and ARM), bytecode translation mostly boils down to a linear mapping from one instruction to another. The embedded ISA specification reduces the number of general purpose registers, in turn removing the need for expensive register allocation. This guarantees single-pass O(n) JIT compilation of contract bytecode. The close proximity of PVM bytecode with actual validator CPU bytecode effectively allows to move all expensive compilation workload off-chain. Benchmarks ( 1, 2) show that with the PVM JIT, sandboxed PVM code executes at around half the speed of native code, which falls into the same ballpark of the state-of-the-art wasmtime Wasm implementation (while EVM sits somewhere around 1/10 to less than 1/100 of native speed). However, the PVM JIT compiler only uses a fraction of the time wasmtime requires to compile the code. Note The PVM JIT isn’t available yet in pallet-revive. At the time of writing, the contract code is interpreted, which is orders of magnitude slower than the JIT.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Why PVM","id":"221","title":"Why PVM"},"222":{"body":"The revive compiler targets the pallet-revive runtime environment. pallet-revive exposes a syscall like interface for contract interactions with the host environment. This is provided by the revive-runtime-api library. After the initial launch on the Polkadot Asset Hub blockchain, the runtime API is considered stable and backwards compatible indefinitively.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Host environment: pallet-revive","id":"222","title":"Host environment: pallet-revive"},"223":{"body":"Contributors are encouraged to implement some appropriate unit and integration tests together with any bug fixes or new feature implementations. However, when it comes to testing the code generation logic, our testing strategy goes way beyond simple unit and integration tests. This chapter explains how the revive compiler implementation is tested for correctness and how we define correctness. Tip Running the integration tests require the evm tool from go-ethereum in your $PATH. Either install it using your package manager or to build it from source: git clone https://github.com/ethereum/go-ethereum/\\ncd go-ethereum\\nmake all\\nexport PATH=/path/to/go-ethereum/build/bin/:$PATH","breadcrumbs":"Developer Guide » Testing strategy » Testing strategy","id":"223","title":"Testing strategy"},"224":{"body":"As a Solidity compiler, we aim to preserve contract code semantics as close as possible to Solidity compiled to EVM with the solc reference implementation. As highlighted in the user guide, due to the underlying target difference, this isn’t always possible. However, wherever it is possible, we follow the philosophy of bug compatibility with the Ethereum contracts stack.","breadcrumbs":"Developer Guide » Testing strategy » Bug compatibility with Ethereum Solidity","id":"224","title":"Bug compatibility with Ethereum Solidity"},"225":{"body":"A high level of bug compatibility with Ethereum is ensured through differential testing with the Ethereum solc and EVM contracts stack. The revive-integration library is the central integration test utility, providing a set of Solidity integration test cases. Further, it implements differential tests against the reference implementation by combining the revive-runner sandbox, the go-ethereum EVM tool and the revive-differential. The revive-runner library provides a declarative test specification format. This vastly simplifies writing differential test cases and removes a lot of room for errors in test logic. Example: { \\"differential\\": true, \\"actions\\": [ { \\"Instantiate\\": { \\"code\\": { \\"Solidity\\": { \\"contract\\": \\"Bitwise\\" } } } }, { \\"Call\\": { \\"dest\\": { \\"Instantiated\\": 0 }, \\"data\\": \\"3fa4f245\\" } } ]\\n} Above example instantiates the Bitwise contract and calls it with some defined calldata. The revive-runner library implements a helper wrapper to execute test specs on the go-ethereum standalone evm tool. This allows the revive-runner to execute specs against the EVM and the pallet-revive runtime. Key to differential testing is setting \\"differential\\": true, resulting in the following: The Bitwise contract is compiled to EVM and PVM code. The runner executes the defined actions on the EVM and collects all state changes (storage, balance) and execution results. The runner executes each action on the PVM. Observed state changes after each step as well as the final execution result is asserted to match the EVM counterparts exactly. Note how we never defined any expected outcome manually. Instead, we simply observe and collect the data defining the “correct” outcome. Differential testing in combination with declarative test specifications proved to be simple, yet very effective, in ensuring expected Ethereum Solidity semantics on pallet-revive.","breadcrumbs":"Developer Guide » Testing strategy » Differential integration tests","id":"225","title":"Differential integration tests"},"226":{"body":"A lot of nuanced bugs caused by tiny implementation details inside the revive compiler and the pallet-revive runtime could be identified and eliminated early on thanks to the differential testing strategy. Thus, we decided to take this approach further and created a comprehensive test runner and a large suite of more complex test cases. The Revive Differential Tests follow the exact same strategy but implement a much more powerful test spec format, spec runner and reports. This allows differentially testing much more complex test cases (for example testing Uniswap pair creations and swaps), executed via transactions sent to actual blockchain nodes.","breadcrumbs":"Developer Guide » Testing strategy » The differential testing utility","id":"226","title":"The differential testing utility"},"227":{"body":"Revive measures Rust line and branch coverage with cargo-llvm-cov over the same\\ncrate set as make test-workspace (the workspace minus revive-llvm-builder). Two ways to obtain a report: Locally: make coverage (described below). Per PR: apply the measure code coverage label. The workflow at .github/workflows/code-coverage.yml publishes the report to https://paritytech.github.io/revive/pr-/ and comments the link on\\nthe PR. Label requires maintainer privileges.","breadcrumbs":"Developer Guide » Code coverage » Code coverage","id":"227","title":"Code coverage"},"228":{"body":"make coverage The target: Builds and tests the workspace under cargo-llvm-cov with --ignore-run-fail so partial coverage lands even when test binaries\\nexit non-zero. Writes HTML to target/coverage/html/ and a summary to target/coverage/summary.txt. Stages the HTML under book/src/coverage/; mdbook copies it to docs/coverage/ during build. Rewrites the Status block below in place with the short commit hash,\\nISO-8601 UTC timestamp, and total line coverage, then runs mdbook build. Prerequisites: LLVM_SYS_221_PREFIX exported and pointing at a compatible LLVM build\\n(same as make test-workspace). llvm-tools-preview rustup component, cargo-llvm-cov, and the pinned mdbook version — all installed on demand by the target.","breadcrumbs":"Developer Guide » Code coverage » Running locally","id":"228","title":"Running locally"},"229":{"body":"make coverage modifies book/src/developer_guide/coverage.md in place and\\nstages files under book/src/coverage/. To restore the committed state\\nbefore pushing: make coverage-reset","breadcrumbs":"Developer Guide » Code coverage » Reverting local changes","id":"229","title":"Reverting local changes"},"23":{"body":"resolc is available on godbolt.org for the Solidity and Yul input languages. See also the announcement post on the forum.","breadcrumbs":"resolc user guide » Tooling integration » Compiler explorer","id":"23","title":"Compiler explorer"},"230":{"body":"Last collected: 2026-07-06T18:46:06Z for commit 0db01dcb — 62.79% line coverage. Open the report","breadcrumbs":"Developer Guide » Code coverage » Status","id":"230","title":"Status"},"231":{"body":"We cross-compile the resolc.js frontend executable to Wasm for running it in a Node.js or browser environment. The musl target is used to obtain statically linked ELF binaries for Linux.","breadcrumbs":"Developer Guide » Cross compilation » Cross compilation","id":"231","title":"Cross compilation"},"232":{"body":"The REVIVE_LLVM_TARGET_PREFIX environment variable is used to control the target environment LLVM dependency. This requires a compatible LLVM build, obtainable via the revive-llvm build script. Example: # Build the host LLVM dependency with PolkaVM target support\\nmake install-llvm\\nexport LLVM_SYS_221_PREFIX=${PWD}/target-llvm/gnu/target-final # Build the target LLVM dependency with PolkaVM target support\\nrevive-llvm emsdk\\nsource emsdk/emsdk_env.sh\\nrevive-llvm --target-env emscripten build --llvm-projects lld\\nexport REVIVE_LLVM_TARGET_PREFIX=${PWD}/target-llvm/emscripten/target-final # Build the resolc frontend executable\\nmake install-wasm\\nmake test-wasm","breadcrumbs":"Developer Guide » Cross compilation » Wasm via emscripten","id":"232","title":"Wasm via emscripten"},"233":{"body":"rust-musl-cross is a straightforward way to cross compile Rust to musl. The Dockerfile is an executable example of how to do that.","breadcrumbs":"Developer Guide » Cross compilation » musl libc","id":"233","title":"musl libc"},"234":{"body":"","breadcrumbs":"FAQ » FAQ","id":"234","title":"FAQ"},"235":{"body":"We neither do nor don’t support any EVM version. We support Solidity versions, starting from solc version 0.8.0 onwards.","breadcrumbs":"FAQ » What EVM version do you support?","id":"235","title":"What EVM version do you support?"},"236":{"body":"Yes, almost all inline assembly features are supported ( see the differences in Yul translation chapter).","breadcrumbs":"FAQ » Is inline assembly supported","id":"236","title":"Is inline assembly supported"},"237":{"body":"See above, the same applies.","breadcrumbs":"FAQ » Do you support opcode XY?","id":"237","title":"Do you support opcode XY?"},"238":{"body":"We generally recommend to always use the latest supported version to profit from latest bugfixes, features and performance improvements. Find out about the latest supported version by running resolc --supported-solc-versions or checking here.","breadcrumbs":"FAQ » In what Solidity version should I write my dApp?","id":"238","title":"In what Solidity version should I write my dApp?"},"239":{"body":"The 24kb code size restriction only exist for the EVM. Our limit is currently around 1mb and may increase further in the future.","breadcrumbs":"FAQ » Tool XY says the contract size is larger than 24kb and will fail to deploy?","id":"239","title":"Tool XY says the contract size is larger than 24kb and will fail to deploy?"},"24":{"body":"There is remix IDE fork with resolc support at remix.polkadot.io. Unfortunately this is no longer actively maintained (there might be bugs and outdated resolc versions).","breadcrumbs":"resolc user guide » Tooling integration » Remix IDE","id":"24","title":"Remix IDE"},"240":{"body":"No. resolc aims to work similarly to solc, but it’s not considered a drop-in replacement.","breadcrumbs":"FAQ » Is resolc a drop-in replacement for solc?","id":"240","title":"Is resolc a drop-in replacement for solc?"},"241":{"body":"The revive compiler speeds up Solidity contracts significantly. revive provides a decisive edge over other contract platforms. Notably, the compiler eliminates the need of rewriting Solidity dApps in Rust or even as single dApp parachains for scaling reasons. Retaining as high compatibility with Ethereum Solidity as possible keeps entry barriers low. We believe in Dr. Gavin Wood’s ĐApps: What Web 3.0 Looks Like manifesto and the ecosystem of the Solidity programming language. Our motivation lies in the realization that for a true web3 revolution, significant scaling efforts, like the ones provided by the PVM and this project, are necessary to unfold.","breadcrumbs":"Roadmap and Vision » Vision and Roadmap","id":"241","title":"Vision and Roadmap"},"242":{"body":"The first major release, resolc v1.0.0, emits functional PVM code from given Solidity sources. It relies on solc and LLVM for optimizations. The main priority of this release was delivering a mostly feature complete and safe Solidity v0.8.0 compiler. Focus for the second major release is on the custom optimization pipeline, which aims to significantly improve emitted code blob sizes. The below roadmap gives a rough overview of the project’s development timeline.","breadcrumbs":"Roadmap and Vision » Roadmap","id":"242","title":"Roadmap"},"25":{"body":"The revive compiler is mostly compatible with the solc standard JSON interface. There are a few differences and additional (PVM related) input configurations:","breadcrumbs":"resolc user guide » Standard JSON interface » Standard JSON interface","id":"25","title":"Standard JSON interface"},"26":{"body":"Used to configure PVM specific compiler settings.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.polkavm object","id":"26","title":"The settings.polkavm object"},"27":{"body":"A boolean value allowing to enable debug information. Corresponds to resolc -g.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.polkavm.debugInformation","id":"27","title":"settings.polkavm.debugInformation"},"28":{"body":"A boolean value allowing to enable the experimental newyork IR pipeline for Yul lowering. Corresponds to resolc --newyork. Off by default. The output JSON includes which pipeline actually ran, via the top-level resolc_pipeline field ( \\"newyork\\" or \\"yul\\" for the standard Yul-to-LLVM pipeline).","breadcrumbs":"resolc user guide » Standard JSON interface » settings.polkavm.newyork","id":"28","title":"settings.polkavm.newyork"},"29":{"body":"Used to apply PVM specific memory configuration settings. settings.polkavm.memoryConfig.heapSize A numerical value allowing to configure the contract heap size. Corresponds to resolc --heap-size. settings.polkavm.memoryConfig.stackSize A numerical value allowing to configure the contract stack size. Corresponds to resolc --stack-size.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.polkavm.memoryConfig object","id":"29","title":"The settings.polkavm.memoryConfig object"},"3":{"body":"This mdBook documents the revive Solidity compiler project. The content is found under book/. Run make book to observe changes.","breadcrumbs":"Welcome » About","id":"3","title":"About"},"30":{"body":"The settings.optimizer object is augmented with support for PVM specific optimization settings.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.optimizer object","id":"30","title":"The settings.optimizer object"},"31":{"body":"A single char value to configure the LLVM optimizer settings. Corresponds to resolc -O.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.optimizer.mode","id":"31","title":"settings.optimizer.mode"},"32":{"body":"Allows to specify arbitrary command line arguments to LLVM initialization. Used mainly for development and debugging purposes.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.llvmArguments","id":"32","title":"settings.llvmArguments"},"33":{"body":"Used to select desired outputs.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.outputSelection object","id":"33","title":"The settings.outputSelection object"},"34":{"body":"Resolc supports the “all” ( *) wildcard for the file-level (first-level) and contract-level (second-level) keys. A file-level key can be either the wildcard or a specific file name, whereas the contract-level key can only be the wildcard for robustness reasons. Thus, output can be requested in 2 ways: // All files and all contracts:\\n{ \\"settings\\": { \\"outputSelection\\": { \\"*\\": { \\"*\\": [/* specific contract-level output fields */], \\"\\": [/* specific file-level output fields */] } } }\\n} // Specific files and all their contracts:\\n{ \\"settings\\": { \\"outputSelection\\": { \\"path/to/my/file.sol\\": { \\"*\\": [/* specific contract-level output fields */], \\"\\": [/* specific file-level output fields */] }, // Rest of files... } }\\n}","breadcrumbs":"resolc user guide » Standard JSON interface » The “all” ( *) wildcard","id":"34","title":"The “all” ( *) wildcard"},"35":{"body":"Note Currently, resolc supports requesting either the full evm output, or one more level of specificity, such as evm.bytecode. When requesting code generation, such as evm.bytecode or evm.assembly, the resolc compilation process additionally needs ast, metadata, irOptimized, and evm.methodIdentifiers selectors. These selectors will be automatically added if code generation is needed, but will only be included in the output if explicitly requested. { \\"settings\\": { \\"outputSelection\\": { \\"path/to/my/file1.sol\\": { // Contracts in this file will generate bytecode. // Only these fields of the JSON output selection will be in the `contracts` output. \\"*\\": [\\"abi\\", \\"evm.methodIdentifiers\\", \\"metadata\\", \\"evm.bytecode\\"], // Only this field of the JSON output selection will be in the `sources` output. \\"\\": [\\"ast\\"] }, \\"path/to/my/file2.sol\\": { // No contracts in this file will generate bytecode. \\"*\\": [\\"abi\\", \\"evm.methodIdentifiers\\", \\"metadata\\"], // No `ast` will be in the `sources` output (only the automatically added `id`, // similar to solc as this is not a configurable output selection). \\"\\": [] }, } }\\n}","breadcrumbs":"resolc user guide » Standard JSON interface » The contract-level evm output selection","id":"35","title":"The contract-level evm output selection"},"36":{"body":"This section highlights some potentially observable differences in the YUL EVM dialect translation compared to Ethereum Solidity. Solidity developers deploying dApps to pallet-revive ought to read and understand this section well.","breadcrumbs":"resolc user guide » Differences to EVM » Differences to EVM","id":"36","title":"Differences to EVM"},"37":{"body":"Our contract runtime does not differentiate between runtime code and deploy (constructor) code.\\nInstead, both are emitted into a single PVM contract code blob and live on-chain.\\nTherefore, in EVM terminology, the deploy code equals the runtime code. Tip In constructor code, the codesize instruction will return the call data size instead of the actual code blob size.","breadcrumbs":"resolc user guide » Differences to EVM » Deploy code vs. runtime code","id":"37","title":"Deploy code vs. runtime code"},"38":{"body":"We are aware of the following differences in the translation of Solidity code.","breadcrumbs":"resolc user guide » Differences to EVM » Solidity","id":"38","title":"Solidity"},"39":{"body":"pallet-revive doesn’t apply the 63/64 gas rule. We strongly advice to change any code calling untrusted contracts to supply a limited amount of gas only!","breadcrumbs":"resolc user guide » Differences to EVM » The 63/64 gas rule","id":"39","title":"The 63/64 gas rule"},"4":{"body":"resolc is a Solidity v0.8 compiler for Polkadot native smart contracts. Solidity compiled with resolc targets PolaVM (PVM). Thanks to additional compiler optimizations and the PVM JIT, contract code can execute much faster than the EVM equivalent. resolc supports almost all Solidity v0.8 features including inline assembly, offering a high level of comptability with the Ethereum Solidity reference implementation.","breadcrumbs":"resolc user guide » resolc user guide","id":"4","title":"resolc user guide"},"40":{"body":"This returns the bytecode keccak256 hash instead.","breadcrumbs":"resolc user guide » Differences to EVM » address.creationCode","id":"40","title":"address.creationCode"},"41":{"body":"The below list contains noteworthy differences in the translation of YUL functions. Note Many functions receive memory buffer offset pointer or size arguments. The PVM pointer size is 32 bit, supplying memory offset or buffer size values above 2^32-1 may lead to OutOfGas errors trap contract execution. The solc compiler ought to always emit valid memory references, so Solidity dApp authors don’t need to worry about this unless they deal with low level assembly code.","breadcrumbs":"resolc user guide » Differences to EVM » YUL functions","id":"41","title":"YUL functions"},"42":{"body":"In general, revive preserves the memory layout, meaning low level memory operations are supported. However, a few caveats apply: The EVM linear heap memory is emulated using a fixed byte buffer of 128kb. This implies that the maximum memory a contract can use is limited to 128kb (on Ethereum, contract memory is capped by gas and therefore varies). Thus, accessing memory offsets larger than the fixed buffer size will trap the contract at runtime with an OutOfBound error. The compiler might detect and optimize unused memory reads and writes, leading to a different msize compared to what the EVM would see.","breadcrumbs":"resolc user guide » Differences to EVM » mload, mstore, msize, mcopy (memory related functions)","id":"42","title":"mload, mstore, msize, mcopy (memory related functions)"},"43":{"body":"In the constructor code, the offset is ignored and this always returns 0. Warning pallet-revive restricts the calldata size (to 128kb at the time of writing).","breadcrumbs":"resolc user guide » Differences to EVM » calldataload, calldatacopy","id":"43","title":"calldataload, calldatacopy"},"44":{"body":"Only supported in constructor code.","breadcrumbs":"resolc user guide » Differences to EVM » codecopy","id":"44","title":"codecopy"},"45":{"body":"Deployments on revive work different than on EVM. In a nutshell: Instead of supplying the deploy code concatenated with the constructor arguments (the EVM deploy model), the revive runtime expects two pointers: A buffer containing the code hash to deploy. The constructor arguments buffer. To make contract instantiation using the new keyword in Solidity work seamlessly, revive translates the dataoffset and datasize instructions so that they assume the contract hash instead of the contract code.\\nThe hash is always of constant size.\\nThus, revive is able to supply the expected code hash and constructor arguments pointer to the runtime. Warning This might fall apart in code creating contracts inside assembly blocks. We strongly discourage using the create family opcodes to manually craft deployments in assembly blocks! Usually, the reason for using assembly blocks is to save gas, which is likely futile on revive due to the underlying differences in the VM architectures, gas models and transaction costs.","breadcrumbs":"resolc user guide » Differences to EVM » create, create2","id":"45","title":"create, create2"},"46":{"body":"Returns the contract hash.","breadcrumbs":"resolc user guide » Differences to EVM » dataoffset","id":"46","title":"dataoffset"},"47":{"body":"Returns the contract hash size (constant value of 32).","breadcrumbs":"resolc user guide » Differences to EVM » datasize","id":"47","title":"datasize"},"48":{"body":"pallet-revive restricts the returndata size (to 128kb at the time of writing).","breadcrumbs":"resolc user guide » Differences to EVM » revert, return","id":"48","title":"revert, return"},"49":{"body":"Translates to a constant value of 2500000000000000.","breadcrumbs":"resolc user guide » Differences to EVM » prevrandao, difficulty","id":"49","title":"prevrandao, difficulty"},"5":{"body":"revive is the name of the overarching “Solidity to PolkaVM” compiler project, which contains multiple components (for example the Yul parser, the code generation library, the resolc executable itself, and many more things). resolc is the name of the compiler driver executable, combining many revive components in a single and easy to use binary application. In other words, revive is the whole compiler infrastructure (more like LLVM) and resolc is a user-facing single-entrypoint compiler frontend (more like clang).","breadcrumbs":"resolc user guide » revive vs. resolc nomenclature","id":"5","title":"revive vs. resolc nomenclature"},"50":{"body":"Only valid to use in EVM (they also have no use case in PVM) and produce a compile time error.","breadcrumbs":"resolc user guide » Differences to EVM » pc, extcodecopy","id":"50","title":"pc, extcodecopy"},"51":{"body":"Related to the Ethereum rollup model and produce a compile time error. Polkadot offers a superior rollup model, removing the use case for blob data related opcodes.","breadcrumbs":"resolc user guide » Differences to EVM » blobhash, blobbasefee","id":"51","title":"blobhash, blobbasefee"},"52":{"body":"There are two different compilation pipelines available in solc and there are small differences between them. Since resolc processes the YUL IR, always assume the solc IR based codegen behavior for contracts compiled with the revive compiler.","breadcrumbs":"resolc user guide » Differences to EVM » Difference regarding the solc via-ir mode","id":"52","title":"Difference regarding the solc via-ir mode"},"53":{"body":"With via-ir, base constructors run before derived state variables are initialized: contract InnerContract { uint public innerConstructedStartTokenId; constructor() { innerConstructedStartTokenId = _startTokenId(); } function _startTokenId() internal view virtual returns (uint) { return 0; }\\n} contract Test is InnerContract { uint public START_TOKEN_ID = 1; constructor() InnerContract() { } function _startTokenId() internal view virtual override returns (uint) { return START_TOKEN_ID; }\\n} Here, innerConstructedStartTokenId in Test returns 0 (with legacy EVM codegen it’d return 1).","breadcrumbs":"resolc user guide » Differences to EVM » Example: State variable initialization order in inheritance","id":"53","title":"Example: State variable initialization order in inheritance"},"54":{"body":"Note This is not yet implemented but something for consideration on the roadmap. Solidity - tightly coupled to the EVM - introduces some inherent inefficiencies that are by design and either needs to be followed or can’t be easily worked around, even with efforts like better optimized compiler and VM implementations. This represents a technical dead end. So far the EVM sees no adoption beyond the blockchain industry. Chances are that the EVM end up deprecated for technical reasons (or maybe not and the RISC-V idea gets abandoned, who knows). PVM, however, is a general purpose VM. It supports LLVM based mainstream programming languages like Rust. It’s a common software engineering practice to compose applications from pieces written in multiple languages, using each to their own strength. For example, AI solutions traditionally use the python scripting language for convenient developer experience, while the underlying AI models get implemented in a lower level language such as C++. The same pattern can of course be applied to dApps, where we’d expect application specific languages like Solidity mixed with libraries implementing computationally complex algorithms in a lower level language. Business logic and user interfaces are naturally implemented as regular Solidity dApps which can include (link against) Rust libraries. Rust is a fast, safe low level language and the Polkadot SDK is written in Rust itself, making it an excellent choice. For example, ZK proof verifiers or expensive DeFi primitives would benefit greatly from Rust implementations. revive provides tooling support and a small Rust contracts SDK for seamless integration with Rust libraries.","breadcrumbs":"resolc user guide » Rust contract libraries » Rust contract libraries","id":"54","title":"Rust contract libraries"},"55":{"body":"Running contract code usually requires a blockchain node. While local dev nodes can be used, sometimes it’s just not desirable to do so. Instead, it can be much more convenient to run and debug contract code with a stripped down environment. This is where the revive-runner comes in handy. In a nutshell, it is a single-binary no-blockchain pallet-revive runtime.","breadcrumbs":"revive-runner sandbox » revive-runner sandbox","id":"55","title":"revive-runner sandbox"},"56":{"body":"Inside the root revive repository directory, install it from source (requires Rust installed): make install-revive-runner After installing, see revive-runner --help for usage help.","breadcrumbs":"revive-runner sandbox » Installation and usage","id":"56","title":"Installation and usage"},"57":{"body":"The standard RUST_LOG environment variable controls the log output from the contract execution. This includes revive runtime logs and PVM execution trace logs. Sometimes it’s convenient to have more fine granular insight. Some useful filters: RUST_LOG=runtime=trace: The pallet-revive runtime trace logs. RUST_LOG=polkavm=trace: Low level PolkaVM instruction tracing.","breadcrumbs":"revive-runner sandbox » Trace logs","id":"57","title":"Trace logs"},"58":{"body":"To avoid running the constract in an unitialized state, revive-runner automatically instantiates the contract before calling it (constructor arguments can be provided).","breadcrumbs":"revive-runner sandbox » Automatic contract instantiation","id":"58","title":"Automatic contract instantiation"},"59":{"body":"Suppose we want to trace the syscalls of the execution of a compiled contract file Flipper.pvm: RUST_LOG=runtime=trace revive-runner -f Flipper.pvm\\n[DEBUG runtime::revive] Contract memory usage: purgable=6144/3145728 KB baseline=103063/1572864\\n[TRACE runtime::revive::strace] call_data_size() = Ok(0) gas_consumed: Weight { ref_time: 985209, proof_size: 0 }\\n[TRACE runtime::revive::strace] value_transferred(out_ptr: 4294836096) = Ok(()) gas_consumed: Weight { ref_time: 2937634, proof_size: 0 }\\n[TRACE runtime::revive::strace] call_data_copy(out_ptr: 131216, out_len: 0, offset: 0) = Ok(()) gas_consumed: Weight { ref_time: 4084483, proof_size: 0 }\\n[TRACE runtime::revive::strace] seal_return(flags: 0, data_ptr: 131216, data_len: 0) = Err(TrapReason::Return(ReturnData { flags: 0, data: [] })) gas_consumed: Weight { ref_time: 5510615, proof_size: 0 }\\n[TRACE runtime::revive] frame finished with: Ok(ExecReturnValue { flags: (empty), data: [] })\\n[TRACE runtime::revive::strace] call_data_size() = Ok(0) gas_consumed: Weight { ref_time: 985209, proof_size: 0 }\\n[TRACE runtime::revive::strace] seal_return(flags: 1, data_ptr: 131088, data_len: 0) = Err(TrapReason::Return(ReturnData { flags: 1, data: [] })) gas_consumed: Weight { ref_time: 2456669, proof_size: 0 }\\n[TRACE runtime::revive] frame finished with: Ok(ExecReturnValue { flags: REVERT, data: [] })","breadcrumbs":"revive-runner sandbox » Example","id":"59","title":"Example"},"6":{"body":"Building Solidity contracts for PolkaVM requires installing the following two compilers: solc: The Ethereum Solidity reference compiler implementation. resolc: The revive Solidity compiler YUL frontend and PolkaVM code generator.","breadcrumbs":"resolc user guide » Installation » Installation","id":"6","title":"Installation"},"60":{"body":"This chapter covers internal aspects of the compiler and helps contributors getting started with the revive codebase.","breadcrumbs":"Developer Guide » Developer guide","id":"60","title":"Developer guide"},"61":{"body":"The revive compiler is an open source software project and we gladly accept quality contributions from anyone!","breadcrumbs":"Developer Guide » Contributor guide » Contributor guide","id":"61","title":"Contributor guide"},"62":{"body":"A quick reference on how to build the Solidity compiler is maintained in the project’s README.md.","breadcrumbs":"Developer Guide » Contributor guide » Getting started","id":"62","title":"Getting started"},"63":{"body":"The Makefile comprehensively encapsulates all development aspects of this codebase. It is kept concise and readable. Please read and use it! You’ll learn for example: How to build and install a resolc development version. How to run tests and benchmarks. How to cross-compile resolc. As a general rule-of-thumb: If make test runs fine locally, chances for green CI pipelines are good.","breadcrumbs":"Developer Guide » Contributor guide » Using the Makefile","id":"63","title":"Using the Makefile"},"64":{"body":"For the most parts, revive is a rather standard Rust workspace codebase. There are some non-Rust dependencies, which sometimes complicates things a little bit. The crates/ dir All Rust crates live under the crates/ directory. The workspace automatically considers any crate found therein. If you need to add a new create, please implement it there. Compiler library crates should be named with the revive- prefix. The crate location doesn’t need the prefix. Dependencies Dependencies should be added as workspace dependencies. Try to avoid pinning dependencies whenever possible. If possible, add dev dependencies as dev-dependencies only. Please do always include the Cargo.lock dependency lock file with your PR. Please don’t run cargo update together with other changes (it is preferred to update the lock file in a dedicated dependency update PR).","breadcrumbs":"Developer Guide » Contributor guide » Codebase organization","id":"64","title":"Codebase organization"},"65":{"body":"Changes must be submitted via a pull request (PR) to the github upstream repository. Ensure that your branch passes make test locally when submitting a pull request. A PR must not be merged until CI fully passes. Exceptions can be made (for example to fix CI issues itself). No force pushes to the main branch and open PR branches. Maintainers can request changes or deny contributions at their own discretion.","breadcrumbs":"Developer Guide » Contributor guide » Contribution rules","id":"65","title":"Contribution rules"},"66":{"body":"We require the official Rust formatter and clippy linter. In addition to that, please also consider the following best-effort aspects: Avoid magic numbers and strings. Instead, add them as module constants. Avoid abbreviated variable and function names. Always provide meaningful and readable symbols. Don’t write macros and don’t use third party macros for things that can easily be expressed in few lines of code or outlined into functions. Avoid import aliasing. Please use the parent or fully qualified path for conflicting symbols. Any inline comments must provide additional semantic meaning, explain counter-intuitive behavior or highlight non-obvious design decisions. In other words, try to make the code expressive enough to a degree it doesn’t need comments expressing the same thing again in the English language. Delete such comments if your AI assistant generated them. Public items must have a meaningful doc comment. Provide meaningful panic messages to .expect() or just use .unwrap().","breadcrumbs":"Developer Guide » Contributor guide » Style guide","id":"66","title":"Style guide"},"67":{"body":"Contributors may use whatever AI assistance tools they wish to whatever degree they wish in the process of creating their contribution, given they acknowledge the following: Project maintainers may reject any contribution (or portions of it) if the contribution shows signs of problematic involvement of generative AI. Judgement of “problematic involvement” lies at the sole discretion of project maintainers. No proof (whether a contribution was in fact AI generated or not) is required. Rationale: No one enjoys reading soulless and uncanny LLM slop. Please review and fix any AI slop yourself prior to submitting a PR. A Solidity compiler is security sensitive software. Even miniscule mistakes can ultimately lead to loss of funds. AI models are inherently stochastic. They regurarly fail to capture important nuances or produce straight hallucinations. Code that was “blindly” generated has no home here. revive is a large codebase. Generative AI assistants may not have enough “context window” to sufficiently capture correctness, consistency and style aspects of the codebase. We’d like to keep this codebase maintainable by humans for the forseeable future.","breadcrumbs":"Developer Guide » Contributor guide » AI policy","id":"67","title":"AI policy"},"68":{"body":"revive relies on solc, the Ethereum Solidity compiler, as the Solidity frontend to process smart contracts written in Solidity. LLVM, a popular and powerful compiler framework, is used as the compiler backend and does the heavy lifting in terms of optimizitations and RISC-V code generation. revive mainly takes care of lowering the Yul intermediate representation (IR) produced by solc to LLVM IR. This approach provides a good balance between maintaining a high level of Ethereum compatibility, good contract performance and feasible engineering efforts.","breadcrumbs":"Developer Guide » Compiler architecture » Compiler architecture and internals","id":"68","title":"Compiler architecture and internals"},"69":{"body":"resolc is the overarching compiler driver library and binary. When compiling a Solidity source file with resolc, the following steps happen under the hood: solc is used to lower the Solidity source code into YUL intermediate representation. revive lowers the YUL IR into LLVM IR. LLVM optimizes the code and emits a RISC-V ELF shared object (through LLD). The PolkaVM linker finally links the ELF shared object into a PolkaVM blob. This compilation process can be visualized as follows:","breadcrumbs":"Developer Guide » Compiler architecture » resolc","id":"69","title":"resolc"},"7":{"body":"resolc is supported an all major operating systems and installation is straightforward.\\nPlease find our binary releases for the following platforms: Linux (MUSL) MacOS (universal) Windows Wasm via emscripten","breadcrumbs":"resolc user guide » Installation » resolc binary releases","id":"7","title":"resolc binary releases"},"70":{"body":"Because on-chain contract code is identified via its code blob hash, it is crucial to maintain reproducible contract builds. A given compiler version must reproduce the contract build exactly on every target platform resolc supports via the official binary releases. To ensure this, we employ the following measures: The code generation must be fully deterministic. For example iterating over standard HashMap invalidates this due to its internal state, making it an invalid operation in revive. To circumvent that, a BTreeMap can be used instead. We release fully statically linked resolc binaries. This prevents dynamic linking of potentially differentiating libraries. The only non-bundled dependency is the solc compiler. This is considered fine because the same properties apply to solc.","breadcrumbs":"Developer Guide » Compiler architecture » Reproducible contract builds","id":"70","title":"Reproducible contract builds"},"71":{"body":"The main compiler logic is implemented in the revive-yul and revive-llvm-context crates. The Yul library implements a lexer and parser and lowers the resulting tree into LLVM IR. It does so by emitting LL using the LLVM builder and our own revive-llvm-context compiler context crate. The revive LLVM context crate encapsulates code generation logic (decoupled from the parser). The Yul library also implements a simple visitor interface (see visitor.rs). If you want to work with the AST, it is strongly recommended to implement visitors. The LLVM code generation is implemented using a dedicated trait for historical reasons only.","breadcrumbs":"Developer Guide » Compiler architecture » The revive compiler libraries","id":"71","title":"The revive compiler libraries"},"72":{"body":"PVM doesn’t offer a similar API. Hence the emitted contract code emulates the linear EVM heap memory using a static byte buffer. Data inside this byte buffer is kept big endian for EVM compatibility reasons (unaligned access is allowed and makes optimizing this non-trivial). Unlike with the EVM, where heap memory usage is gas metered, our heap size is static (the size is user controllable via a setting flag). The compiler emits bound checks to prevent overflows.","breadcrumbs":"Developer Guide » Compiler architecture » EVM heap memory","id":"72","title":"EVM heap memory"},"73":{"body":"LLVM is a special non Rust dependency. We interface its builder interface via the inkwell wrapper crate. We use upstream LLVM, but release and use our custom builds. We require the compiler builtins specifically built for the PVM rv64emacb target and always leave assertions on. Furthermore, we need cross builds because resolc itself targets emscripten and musl. The revive-llvm-builer functions as a cross-platform build script and is used to build and release the LLVM dependency. We also maintain the lld-sys crate for interfacing with LLD. The LLVM linker is used during the compilation process, but we don’t want to distribute another binary.","breadcrumbs":"Developer Guide » Compiler architecture » The LLVM dependency","id":"73","title":"The LLVM dependency"},"74":{"body":"An experimental newyork optimizer introduces a custom IR layer between Yul and LLVM IR to capture optimization opportunities that neither solc nor LLVM can realize on their own. solc optimizes for EVM gas on a 256-bit big-endian stack machine, while LLVM lacks the domain knowledge to understand EVM memory semantics or Solidity patterns. The newyork IR bridges this gap with passes for type narrowing, memory optimization, function deduplication, and more.","breadcrumbs":"Developer Guide » Compiler architecture » Custom optimizations","id":"74","title":"Custom optimizations"},"75":{"body":"The newyork crate ( crates/newyork/) introduces an additional intermediate representation (IR) layer between Yul and LLVM IR. It enables domain-specific optimizations that neither solc nor LLVM can perform on their own, because they lack semantic knowledge about the cross-domain compilation from EVM to PolkaVM. Note The newyork optimizer is experimental. It is gated behind the --newyork CLI flag or the settings.polkavm.newyork field in standard JSON input, and not yet enabled by default.","breadcrumbs":"Developer Guide » The newyork optimizer » The newyork optimizer","id":"75","title":"The newyork optimizer"},"76":{"body":"The EVM and PolkaVM are fundamentally different machines: Property EVM PolkaVM (RISC-V) Word size 256-bit 64-bit Endianness Big-endian Little-endian Architecture Stack machine Register-based Memory model Linear with free pointer convention Flat address space solc optimizes Yul IR for EVM gas costs on a 256-bit big-endian stack machine. LLVM, on the other hand, operates at too low a level to understand EVM memory semantics or Solidity patterns. By the time Yul reaches LLVM IR, the high-level intent is lost. The newyork IR sits between these two worlds and recovers enough semantic information to make optimization decisions that neither compiler can make alone.","breadcrumbs":"Developer Guide » The newyork optimizer » Motivation","id":"76","title":"Motivation"},"77":{"body":"┌──────────────────────────────────────────────────┐\\nYul AST ──────────► │ newyork IR │ ──► LLVM IR ──► RISC-V from_yul│ │ to_llvm │ 1. inline │ │ 2. simplify (pass 1) │ │ 3. dedup (exact + fuzzy) │ │ 4. mem_opt + fmp_prop + keccak_fold │ │ 5. simplify (pass 2) │ │ 6. mapping_access_outlining + guard_narrow │ │ 7. simplify (pass 3) │ │ 8. dedup (exact + fuzzy, pass 2) │ │ ── recursive on subobjects ── │ │ 9. type_inference (iterative narrowing) │ │ 10. late inline loop: inline, simplify, outline, │ │ guard-narrow, simplify, dedup, narrow │ │ 11. heap_opt (analysis) │ │ 12. validate │ └──────────────────────────────────────────────────┘ The optimizer runs the following passes in order: Inlining – custom heuristics tuned for PolkaVM call overhead, with Tarjan SCC-based recursion detection and quadratic leave-overhead modeling. Simplify (pass 1) – constant folding, algebraic identities, strength reduction ( mul by power-of-2 to shl), copy propagation, dead code elimination, environment read CSE ( callvalue, caller, origin, etc.), and revert pattern outlining (panic selectors, custom error selectors). Function deduplication – exact structural match, then fuzzy dedup (functions differing only in literal constants are parameterized and merged, up to 4 differing positions). Memory optimization – load-after-store elimination, keccak256 fusion ( mstore + keccak256 sequences into Keccak256Single/ Keccak256Pair nodes), free memory pointer propagation (replaces mload(0x40) with a known constant), and constant keccak256 folding (precomputes hashes of compile-time-constant inputs). Simplify (pass 2) – cleans up dead code and new constant expressions exposed by memory optimization and keccak folding. Compound outlining – detects keccak256_pair + sload/ sstore sequences and fuses them into MappingSLoad/ MappingSStore IR nodes, eliminating intermediate hash values. Guard narrowing – detects if gt(val, MASK) { revert } and iszero(eq(val, and(val, MASK))) patterns and inserts AND-mask narrowing, giving type inference proof that values fit in fewer bits. Simplify (pass 3) – propagates opportunities created by compound outlining and guard narrowing. Function deduplication (pass 2) – catches new duplicates exposed by guard narrowing and compound outlining canonicalization. Type inference – narrows 256-bit values to smaller widths ( I1, I8, I32, I64, I128, I160) where provable. Runs iteratively for up to 4 cascading refinement rounds, combining forward min-width propagation, backward use-context demands, transparent-operation demand propagation, and interprocedural parameter/return narrowing. Late inline loop – now that narrowing and simplification have shrunk wrapper functions below the inline thresholds, re-runs inlining, simplification, mapping access outlining, guard narrowing, deduplication, and type inference to collect the residual opportunities. Heap analysis – analyzes memory access patterns (alignment, static offsets, taintedness, escaping regions) to determine which accesses can use native little-endian layout, skipping byte-swap operations. Uses GCD-based alignment propagation and per-region taint tracking. Validation – checks SSA well-formedness (use-before-def, multiple definitions), yield count consistency, and function reference correctness. Steps 1-8 run recursively on subobjects (deployed contract code), where optimization impact is greatest. Steps 9-12 run on the full object tree.","breadcrumbs":"Developer Guide » The newyork optimizer » Pipeline overview","id":"77","title":"Pipeline overview"},"78":{"body":"The newyork IR is an SSA form with structured control flow, inspired by MLIR’s SCF dialect. Key design choices: Explicit types with address spaces: Every value carries a bit-width ( I1, I8, I32, I64, I128, I160, I256) and pointers carry address space information ( Heap, Stack, Storage, Code). All values start as I256 and are narrowed by type inference. Pure expressions vs. effectful statements: Expressions compute values without side effects; statements perform memory, storage, or control flow effects. This separation simplifies analysis and rewriting. Semantic annotations: Memory operations are tagged with region information ( Scratch, FreePointerSlot, Dynamic). Storage operations carry static slot values when known at compile time. Structured control flow: If, Switch, and For nodes preserve the high-level structure from Yul, with explicit region arguments and yields for value flow across control edges. For per-operation detail — printed syntax, operand and result types, and more — see the newyork IR reference.","breadcrumbs":"Developer Guide » The newyork optimizer » IR design","id":"78","title":"IR design"},"79":{"body":"","breadcrumbs":"Developer Guide » The newyork optimizer » Key optimizations explained","id":"79","title":"Key optimizations explained"},"8":{"body":"resolc uses solc during the compilation process, please refer to the Ethereum Solidity documentation for installation instructions.","breadcrumbs":"resolc user guide » Installation » Installing the solc dependency","id":"8","title":"Installing the solc dependency"},"80":{"body":"EVM operates on 256-bit words, but most values in practice fit in 32 or 64 bits. The type inference pass performs bidirectional analysis: Forward: computes minimum width from literal values and operation semantics (e.g., add(I64, I8) produces I65, rounded up to I128). Backward use tracking: classifies each value’s uses into 9 context categories ( MemoryOffset, MemoryValue, StorageAccess, Comparison, Arithmetic, FunctionArg, FunctionReturn, ExternalCall, General). All categories conservatively demand the full I256 width by default; the categorization is what enables the interprocedural phase to selectively relax the demand for narrowed function arguments. Earlier versions narrowed directly from the use category, but that was unsound for memory offsets — mload(2^128) aliased to mload(0) because the bounds check ran on an already-truncated value (commit ccca38df). Transparent demand propagation: for modular-arithmetic operations ( Add, Sub, Mul, And, Or, Xor), propagates narrow demands backward through operands, exploiting the property that trunc(op(a,b), N) == op(trunc(a,N), trunc(b,N)). Interprocedural: iteratively narrows function parameter and return types in up to four rounds, combining four narrowing strategies — body-driven parameter narrowing, caller-driven parameter narrowing, forward-based return narrowing, and demand-based return narrowing — and re-running full inference between rounds. Parameters are clamped to at least I32 (XLEN on PolkaVM). This allows LLVM to emit native 32/64-bit instructions instead of software-emulated 256-bit arithmetic, and eliminates expensive multi-instruction comparison sequences (16-20 RISC-V instructions for i256 comparisons reduced to 1-2 for i64).","breadcrumbs":"Developer Guide » The newyork optimizer » Type narrowing","id":"80","title":"Type narrowing"},"81":{"body":"Solidity emits runtime guards that prove values fit in narrow ranges (e.g., address validation via if gt(val, 2^160-1) { revert }). The guard narrowing pass detects these patterns and inserts explicit AND-mask narrowing after the guard. This gives downstream type inference proof that the value fits in fewer bits, enabling cascading narrowing of comparisons, arithmetic, and memory operations that use the guarded value. Two pattern families are recognized: GT-based guards: if gt(val, MASK) { } where MASK is a boundary value like 2^N - 1 EQ-based guards: iszero(eq(val, and(val, MASK))) patterns common in Solidity’s address validation","breadcrumbs":"Developer Guide » The newyork optimizer » Guard narrowing","id":"81","title":"Guard narrowing"},"82":{"body":"PVM doesn’t provide EVM-compatible linear memory, so the compiler emulates it using a byte buffer with byte-swap operations for big-endian compatibility. The heap analysis pass determines which memory accesses can use native little-endian layout by analyzing access patterns: Tracks alignment and static offset information for all memory accesses using GCD-based propagation Propagates taintedness when addresses escape to external calls, are written by external sources ( codecopy, calldatacopy), or use unaligned access patterns Tracks variable-accessed offsets to prevent mode mismatches between native and byte-swap accesses to the same location Handles loop-carried variables conservatively (marked as non-literal to prevent false constant propagation) The codegen backend supports four memory access modes: AllNative (all accesses skip byte-swap), InlineNative (constant-offset accesses use native layout), InlineByteSwap (constant-offset accesses use inline byte-swap), and ByteSwap (standard byte-swap through helper functions).","breadcrumbs":"Developer Guide » The newyork optimizer » Heap optimization","id":"82","title":"Heap optimization"},"83":{"body":"The Solidity free memory pointer ( mload(0x40)) always fits in 32 bits — sbrk enforces FMP < heap_size on every store, regardless of which memory mode the contract uses. After every literal mload(0x40), codegen emits a trunc N → zext 256 chain (where N is bits(heap_size - 1), e.g. 17 for the 131,072-byte default heap). The trunc-extend round-trip is a no-op semantically, but exposes the bound to LLVM’s IPSCCP range analysis, which then propagates it through every add(fmp, K) and eliminates the trailing safe_truncate_int_to_xlen overflow checks at every FMP-derived offset use. Despite only affecting a single codegen site, this is the single largest contributor to the optimizer’s code-size reduction. A subtle gating issue: the byte-order mode ( InlineNative / ByteSwap) and the value bound on FMP are independent invariants. fmp_native_safe() and can_use_native(0x40) protect against mixing little-endian writers with big-endian readers on the FMP slot, which would corrupt the stored offset; the value bound is unrelated and holds in every mode. Earlier versions of the codegen gated the load-side range proof on the byte-order checks, which suppressed the optimization for any contract with dynamic memory accesses. Decoupling the two reasonings — keeping the byte-order gate on the store side, dropping it from the load-side range proof — is what makes the multiplicative IPSCCP effect available to OZ-class contracts.","breadcrumbs":"Developer Guide » The newyork optimizer » Free memory pointer range proof","id":"83","title":"Free memory pointer range proof"},"84":{"body":"The FMP slot is small but easy to mis-optimize. The codebase carries several\\nregression tests for previously-found soundness bugs; new FMP-related changes\\nshould be verified against them: mload_at_fmp_slot ( crates/integration/src/tests.rs, fixed in 1fd6063c): tests mload(0x40) and offsets near it ( 0x21, 0x3f, 0x42)\\non a contract that also performs dynamic mloads. Catches byte-order mismatches\\nwhen one access goes native (LE) and another goes byte-swap (BE). The fix\\nblocks native mode for FMP whenever has_dynamic_accesses is true. mload_huge_offset_traps (fixed in ccca38df): tests that mload(2^128) and mload(2^255) correctly trap via the gas-exhaustion\\npath. Catches UseContext::MemoryOffset narrowing bypassing the safe_truncate_int_to_xlen overflow check at the use site — mload(2^128) aliasing to mload(0) and returning the zero-initialized\\nscratch slot. The fix classifies MemoryOffset as I256 so it doesn’t\\ndrive narrowing; the bounds check at the use site catches out-of-range. FMP i32 shortcut removal ( dbcfc921): an earlier optimization stored\\nonly 4 bytes at offset 0x40 instead of the full 32-byte EVM word, breaking\\nany inline assembly using mstore(0x40, ...) for non-FMP purposes.\\nCaused a cascade of 249/251 retester failures via allocator corruption.\\nNo dedicated regression test was added — the retester corpus was sufficient\\ncoverage — but the lesson generalizes: writes to 0x40 must store the full\\nword, even when the high bits are provably zero, because the slot is part\\nof the same 32-byte memory region read by other code. When adding an optimization that touches FMP, distinguish carefully between:\\nthe byte-order encoding at the slot (must be consistent between writers\\nand readers), the value bound (FMP < heap_size, always true), and the stored width (must be 32 bytes for mstore(0x40, ...), even though only\\nthe low N bits are non-zero). Known limitation: dynamic full-word stores to the FMP word The fmp_could_be_unbounded analysis flags a static mstore(0x40, untrusted) and any\\ndynamic-offset mstore8, but not a dynamic-offset full-word mstore. Such a store whose\\ni256 offset wraps (mod 2²⁵⁶) to the FMP word [0x40, 0x5f] overwrites the free pointer with an\\narbitrary value, which the load-side range proof would then truncate — a miscompile. This is a deliberate, documented gap rather than a bug fix because there is no cheap sound\\ndiscriminator. A store hits the FMP word iff its offset lands in [0x40, 0x5f], which is\\nin-bounds — safe_truncate_int_to_xlen only traps offsets ≥ heap_size — and 256-bit wrap lets\\nany computed add(base, k) reach 0x40 with an adversarial operand, so the offset cannot be\\nproven to miss the slot from width/range information. The only sound recognizer (treat add(fmp, small_const) as ≥ 0x80 by induction on FMP-boundedness) needs new FMP-derivation\\ndataflow, is fragile, and still misses dynamic-index array stores. Conservatively flagging every\\ndynamic full-word store (as the rare dynamic mstore8 does, where it is free) disables the FMP\\nrange proof for essentially every contract — measured at roughly +9% / +30 KB on the\\nOpenZeppelin corpus. The gap is unreachable from solc output: solc’s dynamic memory stores are all free-pointer-relative\\n( ≥ 0x80) and never target 0x40. Only hand-written Yul ( resolc --yul) with an offset\\nengineered to equal 0x40 reaches it.","breadcrumbs":"Developer Guide » The newyork optimizer » Soundness traps for FMP optimizations","id":"84","title":"Soundness traps for FMP optimizations"},"85":{"body":"Two complementary optimizations target the common Solidity pattern of hashing values for storage slot computation: Fusion: Recognizes mstore + keccak256 sequences and fuses them into dedicated IR nodes ( Keccak256Single, Keccak256Pair), eliminating intermediate memory traffic. Constant folding: When all keccak256 inputs are compile-time constants, the hash is computed at compile time and replaced with a literal. Known limitation: constant-folding drops the fused-keccak scratch write-back The fused Keccak256Pair/ Keccak256Single helpers write their inputs back to scratch memory\\n( [0, 0x40) / [0, 0x20)), and fusion dead-eliminates the original mstores because that\\nwrite-back reproduces them. Constant-folding the fused node to a literal removes the helper, so the\\nscratch is left unwritten — a later mload from [0, 0x40) that the optimizer cannot forward\\n(across a region/call boundary) would read stale memory. This gap is deliberately left open: it is solc-unreachable (solc treats scratch as volatile and never\\nre-reads it as data after a keccak), and every sound fix is a code-size regression because the dropped\\nwrite-back means the current output is already short the stores (disabling the fold falls back to the\\nruntime keccak helper, +0.78% on the OZ corpus, with no later mem_opt pass to clean re-emitted\\nwrites). Only hand-written Yul that reads scratch after a constant-operand keccak across a boundary\\ncan observe it.","breadcrumbs":"Developer Guide » The newyork optimizer » Keccak256 fusion and folding","id":"85","title":"Keccak256 fusion and folding"},"86":{"body":"Solidity mapping accesses follow a predictable pattern: hash a key with a storage slot, then load/store the result. The compound outlining pass detects keccak256_pair(key, slot) followed by sload/ sstore and fuses them into MappingSLoad/ MappingSStore IR nodes. These are lowered to outlined helper functions ( __revive_mapping_sload, __revive_mapping_sstore) that combine the hash computation with the storage operation, eliminating intermediate values and redundant byte-swaps.","breadcrumbs":"Developer Guide » The newyork optimizer » Compound outlining (mapping access)","id":"86","title":"Compound outlining (mapping access)"},"87":{"body":"Solidity generates many near-identical functions that differ only in literal constants (e.g., error selectors, storage slot offsets). Fuzzy deduplication identifies such groups, parameterizes the differing literals (up to 4 positions), and replaces all copies with calls to a single shared implementation.","breadcrumbs":"Developer Guide » The newyork optimizer » Fuzzy function deduplication","id":"87","title":"Fuzzy function deduplication"},"88":{"body":"The simplify pass detects common revert patterns and replaces them with compact IR nodes: Panic reverts: Solidity Panic(uint256) sequences (selector 0x4e487b71 + encoded panic code) are collapsed into PanicRevert { code } nodes, which are lowered to shared helper functions. Custom error reverts: ABI-encoded custom error reverts with known selectors are collapsed into CustomErrorRevert { selector, args } nodes. These patterns appear dozens of times in typical contracts, and outlining them into shared blocks eliminates significant code duplication.","breadcrumbs":"Developer Guide » The newyork optimizer » Revert pattern outlining","id":"88","title":"Revert pattern outlining"},"89":{"body":"The LLVM codegen backend generates approximately 15 types of outlined helper functions for common operations: Storage: __revive_sload_word, __revive_sstore_word (handle byte-swap internally) Mapping: __revive_mapping_sload, __revive_mapping_sstore (keccak256 + storage in one call) Callvalue: __revive_callvalue, __revive_callvalue_nonzero (boolean optimization for non-payable checks) Calldataload: __revive_calldataload (outlined when >= 20 call sites) Memory: __revive_store_bswap, __revive_exit_checked, __revive_return_word Errors: __revive_error_string_revert_N, __revive_custom_error_N (per data-word count) Keccak wrappers: __keccak256_slot_N (one noinline wrapper per constant slot, internally dispatching to __revive_keccak256_two_words) Additionally, common exit patterns (revert with constant length, zero-value returns) are deduplicated into shared LLVM basic blocks, saving hundreds of instruction copies in large contracts.","breadcrumbs":"Developer Guide » The newyork optimizer » Outlined helper functions","id":"89","title":"Outlined helper functions"},"9":{"body":"We distribute the revive compiler as node.js module.","breadcrumbs":"resolc user guide » Installation » revive NPM package","id":"9","title":"revive NPM package"},"90":{"body":"","breadcrumbs":"Developer Guide » The newyork optimizer » Codesize results","id":"90","title":"Codesize results"},"91":{"body":"Reproducible with cargo test --package revive-integration -- codesize for the Via Yul IR column ( crates/integration/codesize.json) and cargo test --package revive-integration --features newyork -- codesize for the Via newyork IR column ( crates/integration/codesize_newyork.json). Contract Via Yul IR (bytes) Via newyork IR (bytes) Reduction Baseline 838 493 −41.2% Computation 2,368 1,217 −48.6% DivisionArithmetics 11,444 7,370 −35.6% ERC20 18,057 8,726 −51.7% Events 1,614 909 −43.7% FibonacciIterative 1,373 969 −29.4% Flipper 2,205 1,058 −52.0% SHA1 7,830 6,264 −20.0%","breadcrumbs":"Developer Guide » The newyork optimizer » Integration test contracts","id":"91","title":"Integration test contracts"},"92":{"body":"Measured against real-world contracts generated with the OpenZeppelin Wizard. The numbers below are a development snapshot. Contract Via newyork IR (bytes) oz_gov 81,840 erc721 52,634 erc20 45,703 oz_stable 45,052 oz_rwa 41,581 erc1155 33,087 oz_simple_erc20 17,024 proxy 3,748 Total 320,669 For comparison, building the same contracts without the newyork optimizer at the equivalent snapshot produced 563,526 bytes total — a reduction of about −43% across the corpus. Per-contract reductions in the integration suite range from roughly −20% (SHA1, where the bulk of the work is the SHA-1 inner loop and offers little to optimize) to about −52% (Flipper, where the optimizer strips away most of Solidity’s dispatch and storage-access scaffolding).","breadcrumbs":"Developer Guide » The newyork optimizer » OpenZeppelin contracts","id":"92","title":"OpenZeppelin contracts"},"93":{"body":"The first version of the newyork optimizer was authored collaboratively and reviewed extensively by the revive maintainers, as well as Claude Opus, Claude Fable, Qwen, Minimax and Deepseek LLMs, over a span of many months — from early February 2026 through mid-June 2026. The development progressed through several distinct phases: Phase 1 – Initial scaffolding: The first draft established the core IR data structures, Yul-to-newyork-IR translation, and LLVM codegen. Early commits focused on getting a correct round-trip through the new pipeline. Phase 2 – Optimization passes: Once the baseline was stable, optimization passes were added iteratively: inlining, simplification, memory optimization, function deduplication, keccak256 fusion, and type inference. Each pass was validated against differential tests comparing EVM and PVM execution. Phase 3 – Soundness hardening: Several type inference and narrowing approaches turned out to be unsound and had to be reworked: An early type inference approach caused namespace collisions across subobjects and was scoped per-object. Caller-based parameter narrowing was polluted by overly aggressive inference and replaced with body-based structural analysis. Backward demand-driven narrowing required multiple iterations to become provably safe. Phase 4 – Measuring and tuning: Systematic measurement of OpenZeppelin contracts revealed which optimizations had the most impact and which approaches regressed performance. Throughout development the optimizer was validated against the existing integration and differential test suites (containing over 30,000 test cases), which run each contract on both EVM and PVM and assert identical state changes. The newyork compiler pipeline introduced no new regressions over these test suites. This was achieved by careful manual reviews and many LLM bughunt loops. Additionally, a final security review by Anthropic’s Fable 5 LLM found no remaining soundness issues. As with any new compiler feature, it should still be treated as experimental as of now.","breadcrumbs":"Developer Guide » The newyork optimizer » Development history and challenges","id":"93","title":"Development history and challenges"},"94":{"body":"Approach Outcome Storage bswap decomposition (4x bswap.i64) Regressed: LLVM handles bswap.i256 better natively NoInline on __revive_int_truncate +62% regression: PolkaVM call overhead exceeds inline cost Native FMP memory (inline sbrk) Mixed: small contracts improved, large ones regressed from sbrk bloat Shared overflow trap block Mixed: prevented LLVM from eliminating individual dead overflow checks Aggressive IR-level single-call inlining Regressed large contracts (ERC20 +6.1%): merged bodies become monolithic functions LLVM can’t optimize, so large functions are deferred to LLVM’s inliner instead Type-inference narrowing of mload(0x40) to I32 Regressed small contracts (+252 bytes): conflicts with the codegen FMP range proof; the bound is exposed via a trunc→zext pair instead Full simplifier re-run after mem_opt Mixed: helped small ERC20 (−293 bytes) but regressed the OZ stablecoin (+72 bytes); replaced by a targeted keccak-only fold These results highlight a recurring theme: interacting well with LLVM’s own optimization passes is critical. Optimizations at the IR level can inadvertently inhibit LLVM’s downstream passes, sometimes causing surprising regressions.","breadcrumbs":"Developer Guide » The newyork optimizer » Approaches that did not work","id":"94","title":"Approaches that did not work"},"95":{"body":"The following opportunities have been identified but are not yet implemented: Memory optimization across loop boundaries: Tracked memory state is cleared around for loop condition, body, and post blocks, so load-after-store eliminations do not carry across loop iterations. Preserving loop-invariant state would recover more eliminations. Adaptive inlining thresholds: Current thresholds are static constants. Profile-guided or contract-size-aware heuristics could improve decisions for diverse contract sizes. Extended fuzzy deduplication: The current pass only parameterizes literals in Let bindings and SStore slots. Extending it to consider literals inside MStore, Return, Revert, and Log statements would find more deduplication opportunities. Type checking in validation: The validator checks SSA well-formedness and structure, but not operation type consistency. Type discipline is maintained by construction (type inference and codegen), with LLVM’s IR verifier as the backstop. Loop variable narrowing: Loop-carried variables are conservatively widened to I256. Reaching a fixed-point across loop iterations could allow narrower types for simple counters. Functions with leave inside a for loop are not inlined: the IR-level inliner defers such functions to LLVM’s inliner, so they miss the interprocedural constant propagation and width narrowing the IR-level pass provides.","breadcrumbs":"Developer Guide » The newyork optimizer » Known limitations and future work","id":"95","title":"Known limitations and future work"},"96":{"body":"Passing --debug-output-dir makes the newyork pipeline write IR and analysis artifacts for each compiled contract into that directory. The dumps are produced automatically whenever the directory is set. File Content .newyork Final optimized IR, annotated with the inferred type widths .snapshot.newyork IR snapshot taken before the late passes (only when captured during translation) .heap.newyork Heap analysis summary (native regions/offsets, taintedness, escapes, dynamic accesses) .mem.newyork Memory optimization counters (loads/stores eliminated, keccak fusions, FMP loads eliminated)","breadcrumbs":"Developer Guide » The newyork optimizer » Debug output","id":"96","title":"Debug output"},"97":{"body":"Module Purpose lib.rs Pipeline orchestration and pass sequencing ir.rs Core IR data structures (types, expressions, statements, functions, objects) from_yul.rs Yul AST to newyork IR translation (two-pass with forward reference support) to_llvm.rs newyork IR to LLVM IR codegen with outlined helpers and narrowing simplify.rs Constant folding, algebraic identities, strength reduction, copy propagation, DCE, environment read CSE, revert outlining, callvalue hoisting, function deduplication (exact and fuzzy), constant keccak folding inline.rs Function inlining with PolkaVM-tuned heuristics (Tarjan SCC, leave elimination) type_inference.rs Bidirectional integer width narrowing with transparent demand propagation mem_opt.rs Load-after-store elimination, keccak256 fusion, FMP propagation heap_opt.rs Heap access pattern analysis, alignment tracking, byte-swap elimination mapping_access_outlining.rs Mapping access pattern detection and fusion ( keccak256_pair + sload/ sstore) guard_narrow.rs Guard pattern detection and AND-mask narrowing insertion validate.rs IR well-formedness checks (SSA, yields, function references) printer.rs Human-readable IR pretty printer with configurable output ssa.rs SSA construction helpers (scope management, phi-node merging)","breadcrumbs":"Developer Guide » The newyork optimizer » Module reference","id":"97","title":"Module reference"},"98":{"body":"A per-operation reference for the newyork IR: textual syntax, operand and result types, purity, region and static-slot annotations, and examples.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » newyork IR reference","id":"98","title":"newyork IR reference"},"99":{"body":"This reference page enumerates every operation the newyork IR supports. It is a lookup, not a walkthrough: each entry is self-contained and intended to be reachable by anchor. Operations are grouped by function (memory and storage writes, pure expressions, control flow, and so on) rather than alphabetically. Jump to a specific operation from the operation index below, or use the sidebar. Every operation appears in two places in the codebase. The canonical Rust definition is a variant of either Expression or Statement in ir.rs. The textual rendering used by debug dumps and by this reference page is produced by the printer in printer.rs. Note Treat the printed syntax as a debug surface, not a stable input language: there is no parser for it, and printer details change when passes add new annotations.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » How to read this reference","id":"99","title":"How to read this reference"}},"length":243,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"7":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"t":{"1":{"8":{":":{"4":{"6":{":":{"0":{"6":{"df":0,"docs":{},"z":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"230":{"tf":1.0}}},"d":{"b":{"0":{"1":{"d":{"c":{"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772}},"x":{"0":{"0":{".":{".":{"0":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"8":{"c":{"3":{"7":{"9":{"a":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951}}},"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":4,"docs":{"109":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"4":{"0":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"107":{"tf":1.0},"216":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{"4":{"8":{"7":{"b":{"7":{"1":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"8":{"0":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"109":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"216":{"tf":1.0}}}}}},"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}},"–":{"3":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"5":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"/":{"1":{"0":{"0":{"df":1,"docs":{"221":{"tf":1.0}}},"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"77":{"tf":1.0}}},"1":{",":{"4":{"4":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}}},"2":{"8":{"df":0,"docs":{},"k":{"b":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"217":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"1":{",":{"0":{"7":{"2":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"6":{"df":1,"docs":{"80":{"tf":1.0}}},"7":{",":{"0":{"2":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}},"8":{",":{"0":{"5":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":18,"docs":{"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"f":{"d":{"6":{"0":{"6":{"3":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"–":{"4":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"2":{",":{"2":{"0":{"5":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"0":{".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":2,"docs":{"230":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"5":{"6":{"6":{"6":{"9":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"2":{"5":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"6":{"df":20,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"6":{"3":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"^":{"1":{"6":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.0},"81":{"tf":1.0}}}},"df":7,"docs":{"12":{"tf":1.0},"221":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"3":{",":{"7":{"4":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"2":{"/":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"6":{"6":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"217":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"3":{",":{"0":{"8":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"93":{"tf":1.0}},"f":{"a":{"4":{"df":0,"docs":{},"f":{"2":{"4":{"5":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"8":{"4":{"4":{"8":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"5":{"8":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"4":{"8":{"3":{"6":{"0":{"9":{"6":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{",":{"0":{"5":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"209":{"tf":1.0},"218":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"5":{"1":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"6":{"3":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{"1":{"0":{"6":{"1":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{",":{"5":{"2":{"6":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}},"6":{",":{"2":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"7":{"9":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"3":{"/":{"6":{"4":{"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":5,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"7":{",":{"3":{"7":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"8":{",":{"7":{"2":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"4":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"5":{"2":{"0":{"9":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"41":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"196":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"149":{"tf":1.0},"184":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"202":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}},"v":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"0":{"df":2,"docs":{"111":{"tf":1.0},"191":{"tf":1.0}}},"1":{"df":1,"docs":{"201":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"3":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"111":{"tf":1.0},"195":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"208":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"150":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"35":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.6457513110645907}},"m":{"df":4,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"106":{"tf":1.0},"181":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"66":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}},"o":{"c":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"221":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":10,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0}},"i":{"df":27,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"z":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":110,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"221":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"’":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"p":{"df":1,"docs":{"241":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"190":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"227":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"32":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"_":{"0":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"176":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"32":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"58":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"216":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"239":{"tf":1.0},"54":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"181":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"221":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"236":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"214":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"221":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"150":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"64":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"182":{"tf":1.0},"38":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"85":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"204":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"222":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"102":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"225":{"tf":1.0},"68":{"tf":1.0}},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"241":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"118":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"=":{"1":{"0":{"3":{"0":{"6":{"3":{"/":{"1":{"5":{"7":{"2":{"8":{"6":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":2,"docs":{"12":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"197":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"221":{"tf":1.0},"241":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"103":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"186":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.7320508075688772},"168":{"tf":1.0},"178":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"196":{"tf":1.0},"218":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"228":{"tf":1.0},"231":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"1":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.4142135623730951},"41":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":5,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"225":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"156":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"242":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"157":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"228":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"158":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":2.8284271247461903},"201":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"134":{"tf":1.0},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":12,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.0},"216":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"195":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"g":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"238":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":2.0},"232":{"tf":2.449489742783178},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":2.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"227":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"73":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}},"v":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"188":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":49,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"84":{"tf":2.6457513110645907},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"102":{"tf":1.0},"204":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"189":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"102":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"225":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"161":{"tf":1.0},"43":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"102":{"tf":1.0},"162":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":2.23606797749979},"181":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0}}}},"r":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":2.0},"207":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"’":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"102":{"tf":1.0},"144":{"tf":1.7320508075688772},"77":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"64":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"d":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"101":{"tf":1.0},"19":{"tf":2.0},"196":{"tf":3.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"206":{"tf":1.0},"226":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"a":{"3":{"8":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"105":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"153":{"tf":1.0},"221":{"tf":1.4142135623730951},"37":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":14,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"236":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"167":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"238":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.4142135623730951}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"179":{"tf":1.0}},"i":{"df":3,"docs":{"149":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"df":2,"docs":{"119":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"11":{"tf":2.0},"19":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"z":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"136":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"185":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":55,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"216":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":3.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"178":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":5,"docs":{"102":{"tf":1.0},"164":{"tf":1.7320508075688772},"37":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"230":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"225":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"223":{"tf":1.0},"55":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"66":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"119":{"tf":1.0},"140":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"196":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":63,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":4,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"t":{"df":4,"docs":{"11":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"242":{"tf":1.0}}},"x":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"228":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"226":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"172":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"195":{"tf":2.23606797749979},"197":{"tf":3.3166247903554},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"220":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"192":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":12,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"222":{"tf":1.0},"240":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"221":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"214":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"0":{"tf":2.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"14":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"232":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"131":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":14,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"228":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"118":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"182":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"66":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"84":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"140":{"tf":1.0},"60":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"227":{"tf":1.0},"64":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"226":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"202":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"176":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"239":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"a":{"2":{"8":{"c":{"4":{"c":{"1":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"218":{"tf":1.0},"242":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"188":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"163":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":2.449489742783178},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"102":{"tf":1.0},"173":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}},"b":{"c":{"df":0,"docs":{},"f":{"c":{"9":{"2":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}},"’":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"19":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}},"s":{"df":5,"docs":{"221":{"tf":1.0},"241":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"192":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"140":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":2.0}},"l":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":2.23606797749979},"28":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":5,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"215":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"228":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"64":{"tf":3.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":12,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":3.1622776601683795},"207":{"tf":1.0},"208":{"tf":1.0},"239":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"204":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":106,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"33":{"tf":1.0},"55":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":7,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"137":{"tf":2.23606797749979},"138":{"tf":1.7320508075688772},"139":{"tf":2.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"226":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"101":{"tf":1.0},"168":{"tf":1.0},"209":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"208":{"tf":1.0},"70":{"tf":1.0}}}}}}}}}}},"v":{"df":2,"docs":{"55":{"tf":1.0},"64":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"242":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.0},"12":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"225":{"tf":3.0},"226":{"tf":2.0},"37":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"153":{"tf":2.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"137":{"tf":1.0},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"176":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"216":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"235":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":1,"docs":{"241":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}},"n":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"r":{"df":3,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"183":{"tf":1.0},"240":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.7320508075688772},"224":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"181":{"tf":1.0},"191":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"174":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"108":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"176":{"tf":1.0},"190":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"241":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":49,"docs":{"100":{"tf":2.0},"108":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"241":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}},"f":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"231":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"184":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":20,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}},"o":{"d":{"df":6,"docs":{"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":12,"docs":{"161":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"106":{"tf":2.23606797749979},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"221":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"241":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"232":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"102":{"tf":1.0},"222":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"81":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"135":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"4":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":12,"docs":{"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"225":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"192":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{":":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"241":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"183":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}},"u":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":67,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"72":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"77":{"tf":1.7320508075688772},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"225":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":121,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"215":{"tf":1.0},"239":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":5,"docs":{"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"228":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"(":{"$":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"118":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.0},"221":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"15":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"223":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"s":{"df":6,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"148":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.6457513110645907},"197":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0}},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"a":{"df":1,"docs":{"148":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"df":1,"docs":{"140":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"50":{"tf":1.0}}},"y":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"165":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"178":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}},"t":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"239":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.0},"81":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"234":{"tf":1.0}}},"r":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}},"w":{"df":4,"docs":{"11":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"229":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":2.23606797749979}}},"l":{"df":4,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"197":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":4,"docs":{"1":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"242":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"x":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"223":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":8,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"218":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":3.7416573867739413},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"242":{"tf":1.0}},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"183":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.6457513110645907},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"209":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"59":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0}}}}}},"df":5,"docs":{"107":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"231":{"tf":1.0},"232":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"94":{"tf":1.0}},"i":{"df":4,"docs":{"220":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"_":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"176":{"tf":1.0}},"e":{">":{"(":{"[":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"140":{"tf":1.0},"176":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"242":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"’":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"239":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"239":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"g":{"a":{"df":21,"docs":{"0":{"tf":1.7320508075688772},"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":2.23606797749979},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"p":{"df":3,"docs":{"74":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"154":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"160":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"c":{"d":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"140":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"238":{"tf":1.0},"35":{"tf":2.0},"42":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"108":{"tf":1.0},"242":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":13,"docs":{"101":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"242":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}},"l":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"223":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"o":{"d":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"81":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"221":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"77":{"tf":2.23606797749979},"81":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"224":{"tf":1.0},"4":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"221":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"221":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":1,"docs":{"55":{"tf":1.0}}},"l":{"df":4,"docs":{"178":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.0},"208":{"tf":1.0},"228":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"100":{"tf":1.0},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"df":14,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"17":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"201":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"225":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.0},"36":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":2,"docs":{"149":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"d":{"df":4,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"190":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"232":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"1":{"2":{"8":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":22,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"2":{"5":{"6":{"df":85,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":2.8284271247461903},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":8,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"204":{"tf":2.23606797749979},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"5":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":13,"docs":{"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"d":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"147":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.4142135623730951},"226":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"43":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":2.449489742783178},"6":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":2,"docs":{"19":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"242":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":11,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"239":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"191":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"157":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"18":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"208":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"145":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":2.23606797749979},"200":{"tf":1.0},"236":{"tf":1.4142135623730951},"4":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"201":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}},"1":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":14,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"223":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"225":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"97":{"tf":1.0}},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"54":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"202":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"222":{"tf":1.0},"25":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":10,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":7,"docs":{"176":{"tf":1.0},"199":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"r":{"a":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"139":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"102":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"s":{"c":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":36,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"’":{"df":6,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"228":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"65":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"134":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}},"r":{"df":7,"docs":{"197":{"tf":2.23606797749979},"201":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}}},"’":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"s":{"df":1,"docs":{"20":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"k":{"b":{"df":2,"docs":{"59":{"tf":1.0},"84":{"tf":1.0}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"86":{"tf":1.0}}}}},"v":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"142":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"241":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"72":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"225":{"tf":1.0},"34":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"101":{"tf":1.0},"200":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"227":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"178":{"tf":1.0},"228":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"23":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":2.6457513110645907},"66":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"226":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"42":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"230":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"77":{"tf":1.4142135623730951},"96":{"tf":1.0}},"r":{"df":3,"docs":{"107":{"tf":1.0},"193":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.0},"136":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":2.449489742783178},"73":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"217":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"12":{"tf":2.0},"176":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"175":{"tf":1.0},"19":{"tf":3.4641016151377544},"205":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":2.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"’":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"241":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"239":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":26,"docs":{"106":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}},"df":7,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":6,"docs":{"19":{"tf":3.605551275463989},"227":{"tf":1.0},"231":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\\"":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"157":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"’":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"182":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}},"l":{"d":{"df":3,"docs":{"232":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"2":{"2":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":2.0},"232":{"tf":3.0},"242":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"73":{"tf":2.449489742783178},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"’":{"df":3,"docs":{"83":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":12,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"14":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":4,"docs":{"175":{"tf":1.0},"183":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"0":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{">":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"209":{"tf":1.0}}}},"df":4,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"57":{"tf":2.23606797749979},"95":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"24":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"241":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"197":{"tf":3.4641016151377544},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":2.8284271247461903}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}},"w":{"df":9,"docs":{"141":{"tf":1.0},"179":{"tf":1.4142135623730951},"241":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"125":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.0},"242":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"227":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"223":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"241":{"tf":1.0}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"225":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":11,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"221":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"119":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":2.0},"97":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"178":{"tf":1.0},"196":{"tf":1.4142135623730951},"225":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"203":{"tf":1.0},"42":{"tf":1.0}}}}}}},"y":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"180":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"228":{"tf":1.7320508075688772},"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"227":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":4,"docs":{"178":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"59":{"tf":1.0},"72":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"153":{"tf":1.4142135623730951},"197":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}},"n":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"100":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"u":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"227":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}},"x":{"4":{"0":{"df":4,"docs":{"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"^":{"1":{"2":{"8":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"3":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"137":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":9,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"l":{"df":9,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}},"i":{"df":2,"docs":{"177":{"tf":1.0},"229":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"66":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"35":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"221":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"241":{"tf":1.0},"76":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"149":{"tf":2.0},"42":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}},"0":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}},"x":{"4":{"0":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"2":{"df":1,"docs":{"178":{"tf":1.0}}},"4":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"113":{"tf":1.0},"133":{"tf":1.0},"180":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{">":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":78,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"221":{"tf":1.4142135623730951},"4":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":9,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"209":{"tf":1.0},"227":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":12,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":2,"docs":{"115":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"w":{"df":12,"docs":{"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":18,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"136":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"204":{"tf":1.0},"28":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"231":{"tf":1.0},"9":{"tf":1.0}}}},"df":10,"docs":{"197":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"55":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"124":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":102,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":80,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"h":{"df":1,"docs":{"200":{"tf":1.0}}}},"w":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"20":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"226":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":2.0},"158":{"tf":1.7320508075688772},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"o":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":8,"docs":{"0":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":1.0}}}}}}},"k":{"(":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":3,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"16":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"(":{"a":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":112,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":23,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":28,"docs":{"12":{"tf":3.3166247903554},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"83":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0},"221":{"tf":1.4142135623730951},"53":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"145":{"tf":2.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"41":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"187":{"tf":1.0},"216":{"tf":1.0},"238":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.0},"57":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":4,"docs":{"227":{"tf":1.0},"241":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"216":{"tf":1.7320508075688772},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"221":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"242":{"tf":1.0},"77":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"z":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"w":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"2":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.7320508075688772},"223":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"226":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"182":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0}}}}}}}}},"df":4,"docs":{"216":{"tf":2.23606797749979},"66":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"191":{"tf":1.0},"80":{"tf":2.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":3,"docs":{"77":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"5":{"tf":1.0},"71":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"t":{"df":4,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"175":{"tf":2.0},"223":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":33,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"227":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"12":{"tf":1.0},"238":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"242":{"tf":1.0},"28":{"tf":1.7320508075688772},"52":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"241":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"107":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"106":{"tf":1.4142135623730951},"148":{"tf":1.0},"198":{"tf":1.0},"228":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"168":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":16,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"200":{"tf":1.0},"224":{"tf":1.7320508075688772},"241":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"153":{"tf":1.0},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"36":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"136":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"153":{"tf":1.0},"17":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"224":{"tf":1.0},"42":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"182":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"137":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"218":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"221":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":1.0}},"’":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"242":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":7,"docs":{"54":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"178":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"77":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":2,"docs":{"178":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"d":{"df":11,"docs":{"182":{"tf":1.0},"19":{"tf":2.23606797749979},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"227":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":74,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"6":{"1":{"4":{"4":{"/":{"3":{"1":{"4":{"5":{"7":{"2":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":106,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"32":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"229":{"tf":1.0},"65":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":9,"docs":{"107":{"tf":1.0},"158":{"tf":1.0},"180":{"tf":1.7320508075688772},"187":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"161":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"10":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"241":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"197":{"tf":1.0},"41":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":5,"docs":{"77":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"197":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":2.23606797749979},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"201":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"14":{"tf":1.0},"176":{"tf":1.7320508075688772},"195":{"tf":1.0},"221":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"x":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":2,"docs":{"19":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"242":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"202":{"tf":1.0},"242":{"tf":1.0},"68":{"tf":1.0}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":7,"docs":{"240":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"70":{"tf":1.7320508075688772},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"231":{"tf":1.0}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"10":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.0},"5":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"v":{"df":6,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"34":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"239":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"187":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"48":{"tf":1.0}},"s":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.0},"187":{"tf":1.7320508075688772},"192":{"tf":1.0},"200":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"229":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"v":{"df":41,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":2.23606797749979},"223":{"tf":1.0},"225":{"tf":2.8284271247461903},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"241":{"tf":1.0},"78":{"tf":1.0}}}}}}},"h":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"s":{"c":{"df":8,"docs":{"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"225":{"tf":1.0}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"92":{"tf":1.0}}}}}},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"100":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"39":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":19,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"223":{"tf":1.0},"228":{"tf":1.7320508075688772},"231":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"59":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":9,"docs":{"227":{"tf":1.0},"233":{"tf":1.4142135623730951},"241":{"tf":1.0},"54":{"tf":2.8284271247461903},"56":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"v":{"6":{"4":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}},"m":{"a":{"c":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"107":{"tf":1.0},"242":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":2.0}}}},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.0},"89":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}}}},"c":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"140":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.7320508075688772}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"115":{"tf":1.0}}}},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":1,"docs":{"12":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"242":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"131":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":21,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"188":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"178":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"195":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"159":{"tf":1.7320508075688772},"167":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"131":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"t":{"df":14,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"128":{"tf":1.0}}}},"h":{"a":{"1":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"92":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"69":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772}}}}},"l":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"77":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"85":{"tf":1.0}}}},"w":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"117":{"tf":2.0},"124":{"tf":2.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"$":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"242":{"tf":1.0}}}}}}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"241":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":1,"docs":{"225":{"tf":1.0}},"f":{"df":4,"docs":{"110":{"tf":1.0},"177":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":2.8284271247461903},"78":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"221":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":6,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"15":{"tf":2.449489742783178},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"29":{"tf":2.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"113":{"tf":1.0},"199":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"3":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"180":{"tf":1.0},"181":{"tf":2.6457513110645907},"182":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"127":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"183":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"221":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"c":{"df":23,"docs":{"11":{"tf":1.0},"16":{"tf":2.0},"19":{"tf":2.23606797749979},"224":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"d":{"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":2.23606797749979},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":2.0},"242":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"4":{"tf":2.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":3,"docs":{"84":{"tf":2.0},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"35":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"100":{"tf":1.0},"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":4,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"1":{"tf":1.0},"221":{"tf":1.4142135623730951},"241":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":1,"docs":{"180":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"a":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":12,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"181":{"tf":1.0}}},"1":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}}},"2":{"df":1,"docs":{"181":{"tf":1.0}}},"3":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"222":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":9,"docs":{"0":{"tf":1.0},"106":{"tf":1.4142135623730951},"14":{"tf":2.6457513110645907},"224":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":10,"docs":{"140":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"235":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"221":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"r":{"df":3,"docs":{"192":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"195":{"tf":1.0}}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"211":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"206":{"tf":1.0}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"231":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"228":{"tf":1.0},"230":{"tf":1.0}}}}},"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{">":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":3,"docs":{"225":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"85":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"233":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"101":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"193":{"tf":1.7320508075688772},"217":{"tf":2.23606797749979},"66":{"tf":1.0}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}}},"u":{"b":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"109":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"228":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"19":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":21,"docs":{"19":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"100":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"178":{"tf":1.4142135623730951},"226":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":2.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"73":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":109,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":3,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"68":{"tf":1.0}},"n":{"df":4,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"4":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"223":{"tf":2.6457513110645907},"225":{"tf":3.4641016151377544},"226":{"tf":3.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"84":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"4":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"’":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"77":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":13,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"u":{"df":5,"docs":{"19":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"140":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":2.8284271247461903},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"151":{"tf":2.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"df":3,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"37":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"223":{"tf":1.0},"64":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":8,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"239":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"p":{"df":2,"docs":{"107":{"tf":1.0},"28":{"tf":1.0}},"i":{"c":{"_":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"149":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"57":{"tf":2.0},"59":{"tf":3.0}}},"k":{"df":9,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"226":{"tf":1.0},"45":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"203":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":2.23606797749979}}}}},"t":{"df":2,"docs":{"113":{"tf":1.0},"176":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"77":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"0":{"tf":1.0},"114":{"tf":1.4142135623730951},"187":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"71":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}},"p":{"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.0},"225":{"tf":1.4142135623730951},"241":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"n":{"c":{"(":{"b":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"a":{",":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"6":{"4":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"137":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"83":{"tf":1.4142135623730951}},"→":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":14,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"227":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":3,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":91,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":3.7416573867739413},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.8284271247461903},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"217":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"210":{"tf":1.0},"214":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"224":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"223":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"214":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"42":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.0},"64":{"tf":1.7320508075688772}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0}}}},"df":54,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"192":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}}},"v":{"0":{".":{"8":{".":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":53,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"3":{"df":18,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"4":{"df":9,"docs":{"119":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}},"5":{"df":11,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}},"6":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0}}},"7":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0}}},"8":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"102":{"tf":1.0},"110":{"tf":1.7320508075688772},"191":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":11,"docs":{"12":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":66,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":2.449489742783178},"196":{"tf":3.0},"197":{"tf":3.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"1":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"’":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.0},"99":{"tf":1.0}}}}},"df":2,"docs":{"12":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}}}}},"df":11,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"e":{"c":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"191":{"tf":1.0},"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"157":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":2.0},"238":{"tf":2.0},"24":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"a":{"df":24,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.4142135623730951},"28":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"221":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":4,"docs":{"221":{"tf":2.8284271247461903},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"196":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"241":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"225":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"’":{"d":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"137":{"tf":1.0}},"n":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":21,"docs":{"101":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"95":{"tf":1.0}}},"r":{"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"170":{"tf":1.0},"182":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"’":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"0":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":20,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"217":{"tf":2.0},"5":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"89":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"240":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":27,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"x":{"8":{"6":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":19,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"z":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":21,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"161":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"228":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"138":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"breadcrumbs":{"root":{"0":{".":{"7":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":0,"docs":{},"t":{"1":{"8":{":":{"4":{"6":{":":{"0":{"6":{"df":0,"docs":{},"z":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"230":{"tf":1.0}}},"d":{"b":{"0":{"1":{"d":{"c":{"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772}},"x":{"0":{"0":{".":{".":{"0":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"8":{"c":{"3":{"7":{"9":{"a":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951}}},"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":4,"docs":{"109":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"4":{"0":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"107":{"tf":1.0},"216":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{"4":{"8":{"7":{"b":{"7":{"1":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"8":{"0":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"109":{"tf":2.0},"169":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"216":{"tf":1.0}}}}}},"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}},"–":{"3":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"5":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"/":{"1":{"0":{"0":{"df":1,"docs":{"221":{"tf":1.0}}},"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"77":{"tf":1.0}}},"1":{",":{"4":{"4":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}}},"2":{"8":{"df":0,"docs":{},"k":{"b":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"217":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"1":{",":{"0":{"7":{"2":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"6":{"df":1,"docs":{"80":{"tf":1.0}}},"7":{",":{"0":{"2":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}},"8":{",":{"0":{"5":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":18,"docs":{"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"f":{"d":{"6":{"0":{"6":{"3":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"–":{"4":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"2":{",":{"2":{"0":{"5":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"0":{".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":2,"docs":{"230":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"5":{"6":{"6":{"6":{"9":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"2":{"5":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"6":{"df":20,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"6":{"3":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"^":{"1":{"6":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.0},"81":{"tf":1.0}}}},"df":7,"docs":{"12":{"tf":1.0},"221":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"3":{",":{"7":{"4":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"2":{"/":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"6":{"6":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"217":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"3":{",":{"0":{"8":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"93":{"tf":1.0}},"f":{"a":{"4":{"df":0,"docs":{},"f":{"2":{"4":{"5":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"8":{"4":{"4":{"8":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"5":{"8":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"4":{"8":{"3":{"6":{"0":{"9":{"6":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{",":{"0":{"5":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"209":{"tf":1.0},"218":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"5":{"1":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"6":{"3":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{"1":{"0":{"6":{"1":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{",":{"5":{"2":{"6":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}},"6":{",":{"2":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"7":{"9":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"3":{"/":{"6":{"4":{"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":5,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"7":{",":{"3":{"7":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"8":{",":{"7":{"2":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"4":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"1":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"5":{"2":{"0":{"9":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"41":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"196":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"149":{"tf":1.0},"184":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"202":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}},"v":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"0":{"df":2,"docs":{"111":{"tf":1.0},"191":{"tf":1.0}}},"1":{"df":1,"docs":{"201":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"3":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"195":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"208":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"150":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"35":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.8284271247461903}},"m":{"df":4,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"106":{"tf":1.0},"181":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"66":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}},"o":{"c":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"221":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":10,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0}},"i":{"df":27,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"z":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":110,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"221":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"’":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"p":{"df":1,"docs":{"241":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"190":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"227":{"tf":1.0},"237":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"32":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"45":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"_":{"0":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"176":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"32":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"58":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"216":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"239":{"tf":1.0},"54":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"181":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"221":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"236":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"214":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"221":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"150":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"182":{"tf":1.0},"38":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"85":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"204":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"222":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"102":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"225":{"tf":1.0},"68":{"tf":1.0}},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"241":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"118":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"=":{"1":{"0":{"3":{"0":{"6":{"3":{"/":{"1":{"5":{"7":{"2":{"8":{"6":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":2,"docs":{"12":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"197":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"221":{"tf":1.0},"241":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"103":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"242":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"186":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.7320508075688772},"168":{"tf":1.0},"178":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"196":{"tf":1.0},"218":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"228":{"tf":1.0},"231":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"1":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.4142135623730951},"41":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":5,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"225":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"156":{"tf":2.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"242":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"157":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"228":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":2.8284271247461903},"201":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"134":{"tf":1.0},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":12,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.0},"216":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"195":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"g":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"238":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":2.0},"232":{"tf":2.449489742783178},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":2.0},"73":{"tf":2.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"227":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"73":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}},"v":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"188":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":49,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"84":{"tf":2.6457513110645907},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"102":{"tf":1.0},"204":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"189":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"102":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"225":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"161":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"102":{"tf":1.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":2.23606797749979},"181":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0}}}},"r":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":2.23606797749979},"207":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"’":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"102":{"tf":1.0},"144":{"tf":2.0},"77":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"64":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"d":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"101":{"tf":1.0},"19":{"tf":2.0},"196":{"tf":3.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"206":{"tf":1.0},"226":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"a":{"3":{"8":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"105":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"153":{"tf":1.0},"221":{"tf":1.4142135623730951},"37":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"147":{"tf":2.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":14,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"3":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"236":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"167":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"238":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.4142135623730951}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"179":{"tf":1.0}},"i":{"df":3,"docs":{"149":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"df":2,"docs":{"119":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"11":{"tf":2.23606797749979},"19":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"z":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"185":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":58,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"216":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":3.3166247903554},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"178":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":5,"docs":{"102":{"tf":1.0},"164":{"tf":2.0},"37":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"230":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"225":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"223":{"tf":1.0},"55":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"66":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"119":{"tf":1.0},"140":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"196":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":65,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":4,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"t":{"df":4,"docs":{"11":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"242":{"tf":1.0}}},"x":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"228":{"tf":1.0},"5":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"226":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"172":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"195":{"tf":2.23606797749979},"197":{"tf":3.3166247903554},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"220":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"192":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":12,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"222":{"tf":1.0},"240":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"221":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"214":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"0":{"tf":2.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"239":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"14":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"232":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"131":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":14,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"228":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"118":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"182":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"66":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"227":{"tf":2.449489742783178},"228":{"tf":2.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"140":{"tf":1.0},"60":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"227":{"tf":1.0},"64":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"226":{"tf":1.0},"45":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"202":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"176":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"239":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"a":{"2":{"8":{"c":{"4":{"c":{"1":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"218":{"tf":1.0},"242":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"163":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":2.449489742783178},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"172":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}}}},"s":{"df":4,"docs":{"102":{"tf":1.0},"173":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}},"b":{"c":{"df":0,"docs":{},"f":{"c":{"9":{"2":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}},"’":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":2.0},"27":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"19":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}},"s":{"df":5,"docs":{"221":{"tf":1.0},"241":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"192":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"140":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":2.0}},"l":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":2.23606797749979},"28":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":5,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"215":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"228":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"64":{"tf":3.0},"70":{"tf":1.0},"73":{"tf":2.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":12,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":3.3166247903554},"207":{"tf":1.0},"208":{"tf":1.0},"239":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"204":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":106,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.7320508075688772}}}},"r":{"df":2,"docs":{"33":{"tf":1.0},"55":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":7,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"137":{"tf":2.23606797749979},"138":{"tf":1.7320508075688772},"139":{"tf":2.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"226":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"101":{"tf":1.0},"168":{"tf":1.0},"209":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"208":{"tf":1.0},"70":{"tf":1.0}}}}}}}}}}},"v":{"df":2,"docs":{"55":{"tf":1.0},"64":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":182,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"242":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.0},"12":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"225":{"tf":3.1622776601683795},"226":{"tf":2.23606797749979},"37":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"153":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"137":{"tf":1.0},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"176":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"216":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}}}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"235":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":1,"docs":{"241":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}},"n":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"r":{"df":3,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"183":{"tf":1.0},"240":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.7320508075688772},"224":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"181":{"tf":1.0},"191":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"174":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"212":{"tf":1.0},"228":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"108":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"176":{"tf":1.0},"190":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"241":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":49,"docs":{"100":{"tf":2.0},"108":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"241":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}},"f":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"231":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"184":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":20,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"232":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}},"o":{"d":{"df":6,"docs":{"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":12,"docs":{"161":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"106":{"tf":2.23606797749979},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"221":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"241":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"232":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"102":{"tf":1.0},"222":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"129":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"135":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"4":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":12,"docs":{"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"225":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"192":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{":":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"241":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"183":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}},"u":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":79,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"235":{"tf":1.7320508075688772},"239":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"77":{"tf":1.7320508075688772},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"225":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":121,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"215":{"tf":1.0},"239":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":5,"docs":{"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"228":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"(":{"$":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"118":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.0},"221":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"15":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"223":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"s":{"df":6,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":1.0},"148":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.8284271247461903},"197":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0}},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"a":{"df":1,"docs":{"148":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"df":1,"docs":{"140":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"186":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"165":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"178":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}},"t":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"239":{"tf":1.4142135623730951},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.0},"81":{"tf":1.0}}}}}},"q":{"df":7,"docs":{"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0}}},"r":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}},"w":{"df":4,"docs":{"11":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"229":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":2.23606797749979}}},"l":{"df":4,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"197":{"tf":1.0},"225":{"tf":1.0},"232":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":4,"docs":{"1":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"242":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"x":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"223":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":8,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"218":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"242":{"tf":1.0}},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"183":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.6457513110645907},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"209":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"59":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0}}}}}},"df":5,"docs":{"107":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"231":{"tf":1.0},"232":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"94":{"tf":1.0}},"i":{"df":4,"docs":{"220":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"_":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"176":{"tf":1.4142135623730951}},"e":{">":{"(":{"[":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"140":{"tf":1.0},"176":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"242":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"’":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"239":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"239":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"g":{"a":{"df":21,"docs":{"0":{"tf":1.7320508075688772},"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":2.449489742783178},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0},"39":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"p":{"df":3,"docs":{"74":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"154":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"160":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"c":{"d":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"140":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"238":{"tf":1.0},"35":{"tf":2.0},"42":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"108":{"tf":1.0},"242":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":13,"docs":{"101":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"242":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}},"l":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"223":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"o":{"d":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"221":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"77":{"tf":2.23606797749979},"81":{"tf":2.8284271247461903},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":226,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"221":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"221":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":1,"docs":{"55":{"tf":1.0}}},"l":{"df":4,"docs":{"178":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.0},"208":{"tf":1.0},"228":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"100":{"tf":1.0},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"df":14,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"15":{"tf":2.6457513110645907},"17":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"201":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"225":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.0},"36":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":2,"docs":{"149":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"d":{"df":4,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"190":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.7320508075688772},"232":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"1":{"2":{"8":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":22,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"2":{"5":{"6":{"df":85,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":2.8284271247461903},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":8,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"204":{"tf":2.23606797749979},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"5":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":13,"docs":{"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"d":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"35":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"147":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.4142135623730951},"226":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"43":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":2.449489742783178},"6":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":2,"docs":{"19":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"242":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":11,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"239":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"191":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"130":{"tf":1.0},"157":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"18":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"208":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"145":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.7320508075688772},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":2.23606797749979},"200":{"tf":1.0},"236":{"tf":1.7320508075688772},"4":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"201":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}},"1":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":14,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"6":{"tf":2.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"225":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"97":{"tf":1.0}},"r":{"df":10,"docs":{"21":{"tf":2.0},"22":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"202":{"tf":1.4142135623730951},"222":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":10,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":7,"docs":{"176":{"tf":1.0},"199":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"r":{"a":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"139":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"102":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"s":{"c":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":145,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"28":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"’":{"df":6,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"228":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"65":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}},"r":{"df":7,"docs":{"197":{"tf":2.23606797749979},"201":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}}},"’":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"240":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"s":{"df":1,"docs":{"20":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"13":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"k":{"b":{"df":2,"docs":{"59":{"tf":1.0},"84":{"tf":1.0}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"86":{"tf":1.0}}}}},"v":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"141":{"tf":1.4142135623730951},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"142":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"140":{"tf":1.4142135623730951},"40":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":2.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"241":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"72":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"225":{"tf":1.0},"34":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"101":{"tf":1.0},"200":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"227":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"178":{"tf":1.0},"228":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"23":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":2.6457513110645907},"66":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"226":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"230":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"77":{"tf":1.4142135623730951},"96":{"tf":1.0}},"r":{"df":3,"docs":{"107":{"tf":1.0},"193":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.0},"136":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":2.6457513110645907},"73":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"217":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"12":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.1622776601683795},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"175":{"tf":1.0},"19":{"tf":3.4641016151377544},"205":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":2.449489742783178},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0}}},"y":{"df":0,"docs":{},"’":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"241":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"239":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":26,"docs":{"106":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}},"df":16,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":6,"docs":{"19":{"tf":3.7416573867739413},"227":{"tf":1.0},"231":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\\"":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"157":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"’":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"182":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}},"l":{"d":{"df":3,"docs":{"232":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"2":{"2":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":2.0},"232":{"tf":3.0},"242":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"73":{"tf":2.6457513110645907},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"’":{"df":3,"docs":{"83":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":12,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.4142135623730951},"193":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"14":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":4,"docs":{"175":{"tf":1.0},"183":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"0":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{">":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"df":4,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"57":{"tf":2.449489742783178},"95":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"24":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"241":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"197":{"tf":3.4641016151377544},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":2.8284271247461903}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}},"w":{"df":9,"docs":{"141":{"tf":1.0},"179":{"tf":1.4142135623730951},"241":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"125":{"tf":1.4142135623730951}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.0},"242":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"227":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"242":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":20,"docs":{"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"223":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"241":{"tf":1.0}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"225":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":11,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"221":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.7320508075688772}},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"119":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":2.0},"97":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"178":{"tf":1.0},"196":{"tf":1.4142135623730951},"225":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"203":{"tf":1.0},"42":{"tf":1.0}}}}}}},"y":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"180":{"tf":2.0},"42":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"228":{"tf":1.7320508075688772},"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"227":{"tf":1.4142135623730951},"70":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":4,"docs":{"178":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.0},"59":{"tf":1.0},"72":{"tf":2.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"153":{"tf":1.4142135623730951},"197":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}},"n":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"100":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"u":{"df":3,"docs":{"205":{"tf":1.0},"206":{"tf":1.0},"227":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}},"x":{"4":{"0":{"df":4,"docs":{"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"^":{"1":{"2":{"8":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"3":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"137":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":9,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"l":{"df":9,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}},"i":{"df":2,"docs":{"177":{"tf":1.0},"229":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"66":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.7320508075688772}},"o":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"35":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"221":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"241":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"149":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}},"0":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}},"x":{"4":{"0":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"2":{"df":1,"docs":{"178":{"tf":1.0}}},"4":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"179":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"113":{"tf":1.0},"133":{"tf":1.0},"180":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"231":{"tf":1.0},"233":{"tf":2.0},"7":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{">":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":78,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"81":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"221":{"tf":1.4142135623730951},"4":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":9,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"209":{"tf":1.0},"227":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":12,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":2,"docs":{"115":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"w":{"df":12,"docs":{"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":149,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.23606797749979},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"28":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"231":{"tf":1.0},"9":{"tf":1.0}}}},"df":10,"docs":{"197":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"55":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":20,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"124":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":102,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":80,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"h":{"df":1,"docs":{"200":{"tf":1.0}}}},"w":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"20":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"226":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":2.23606797749979},"158":{"tf":1.7320508075688772},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"o":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":8,"docs":{"0":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":1.0}}}}}}},"k":{"(":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":3,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"16":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"(":{"a":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"230":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"84":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":112,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":23,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":157,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":3.4641016151377544},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"242":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":2.23606797749979},"76":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"83":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0},"221":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"145":{"tf":2.23606797749979},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"41":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"187":{"tf":1.0},"216":{"tf":1.0},"238":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.1622776601683795},"57":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":4,"docs":{"227":{"tf":1.0},"241":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"216":{"tf":1.7320508075688772},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"221":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"242":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"z":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"w":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"2":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":2.23606797749979},"223":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"226":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.7320508075688772},"182":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.4142135623730951}}}}}}}}},"df":4,"docs":{"216":{"tf":2.23606797749979},"66":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"191":{"tf":1.0},"80":{"tf":2.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":3,"docs":{"77":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"5":{"tf":1.0},"71":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"t":{"df":4,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"175":{"tf":2.0},"223":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":33,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"227":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"12":{"tf":1.0},"238":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"17":{"tf":1.0},"242":{"tf":1.0},"28":{"tf":1.7320508075688772},"52":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"241":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"107":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"106":{"tf":1.4142135623730951},"148":{"tf":1.0},"198":{"tf":1.0},"228":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"168":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.7320508075688772},"219":{"tf":1.0},"222":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":16,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"200":{"tf":1.0},"224":{"tf":1.7320508075688772},"241":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"153":{"tf":1.0},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"36":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"136":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"153":{"tf":1.0},"17":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"224":{"tf":1.0},"42":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"182":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"137":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"218":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"221":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":1.0}},"’":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"232":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"242":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":7,"docs":{"54":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"178":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"77":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":2,"docs":{"178":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"d":{"df":11,"docs":{"182":{"tf":1.0},"19":{"tf":2.23606797749979},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"20":{"tf":1.0},"227":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":74,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"6":{"1":{"4":{"4":{"/":{"3":{"1":{"4":{"5":{"7":{"2":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":106,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"32":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"229":{"tf":1.0},"65":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":26,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":3.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":9,"docs":{"107":{"tf":1.0},"158":{"tf":1.0},"180":{"tf":1.7320508075688772},"187":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"161":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"10":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"241":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"241":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"197":{"tf":1.0},"41":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"238":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":5,"docs":{"77":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"197":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":131,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":2.23606797749979},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"201":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"14":{"tf":1.0},"176":{"tf":1.7320508075688772},"195":{"tf":1.0},"221":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"x":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":2,"docs":{"19":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"242":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"202":{"tf":1.0},"242":{"tf":1.0},"68":{"tf":1.0}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":7,"docs":{"240":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"70":{"tf":2.0},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"231":{"tf":1.0}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":60,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":2.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":1.7320508075688772},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"v":{"df":6,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"34":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"239":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"187":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"48":{"tf":1.0}},"s":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.0},"187":{"tf":1.7320508075688772},"192":{"tf":1.0},"200":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.449489742783178},"89":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"v":{"df":42,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.6457513110645907},"223":{"tf":1.0},"225":{"tf":2.8284271247461903},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":2.23606797749979},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"241":{"tf":1.0},"78":{"tf":1.0}}}}}}},"h":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"s":{"c":{"df":8,"docs":{"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"241":{"tf":1.7320508075688772},"242":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"225":{"tf":1.0}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"242":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"92":{"tf":1.0}}}}}},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"100":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"39":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"n":{"df":19,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"223":{"tf":1.0},"228":{"tf":2.0},"231":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"59":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":9,"docs":{"227":{"tf":1.0},"233":{"tf":1.4142135623730951},"241":{"tf":1.0},"54":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"v":{"6":{"4":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}},"m":{"a":{"c":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"107":{"tf":1.0},"242":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":2.0}}}},"m":{"df":0,"docs":{},"e":{"df":26,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":7,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.0},"89":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}}}},"c":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"140":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.7320508075688772}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951}}}},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":1,"docs":{"12":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"242":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"131":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":21,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"188":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"178":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"195":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"159":{"tf":2.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"131":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"t":{"df":14,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"28":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"128":{"tf":1.4142135623730951}}}},"h":{"a":{"1":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"92":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"69":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772}}}}},"l":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"85":{"tf":1.0}}}},"w":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"117":{"tf":2.0},"124":{"tf":2.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"$":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"242":{"tf":1.0}}}}}}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"241":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"240":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":1,"docs":{"225":{"tf":1.0}},"f":{"df":4,"docs":{"110":{"tf":1.0},"177":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":2.8284271247461903},"78":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"221":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":6,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":2.6457513110645907},"15":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"239":{"tf":1.7320508075688772},"242":{"tf":1.0},"29":{"tf":2.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"113":{"tf":1.0},"199":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"3":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"180":{"tf":1.0},"181":{"tf":2.6457513110645907},"182":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"127":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"183":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"221":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"c":{"df":23,"docs":{"11":{"tf":1.0},"16":{"tf":2.23606797749979},"19":{"tf":2.23606797749979},"224":{"tf":1.0},"225":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.7320508075688772},"242":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":2.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"d":{"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":2.23606797749979},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.7320508075688772},"224":{"tf":2.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"241":{"tf":2.0},"242":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"4":{"tf":2.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":3,"docs":{"84":{"tf":2.23606797749979},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":1.0},"35":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"100":{"tf":1.0},"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":4,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"1":{"tf":1.0},"221":{"tf":1.4142135623730951},"241":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":1,"docs":{"180":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"a":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":12,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"181":{"tf":1.0}}},"1":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}}},"2":{"df":1,"docs":{"181":{"tf":1.0}}},"3":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"222":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":9,"docs":{"0":{"tf":1.0},"106":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"224":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"d":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":10,"docs":{"140":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"235":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"221":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"229":{"tf":1.0},"53":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"r":{"df":3,"docs":{"192":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"195":{"tf":1.0}}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"211":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"206":{"tf":1.4142135623730951}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"231":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"228":{"tf":1.0},"230":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{">":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":3,"docs":{"225":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":2.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"177":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"85":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"233":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":5,"docs":{"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"101":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"193":{"tf":1.7320508075688772},"217":{"tf":2.23606797749979},"66":{"tf":1.0}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.7320508075688772},"197":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}},"u":{"b":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"163":{"tf":1.0},"187":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"109":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"100":{"tf":1.0},"228":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"19":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":21,"docs":{"19":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"235":{"tf":2.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"100":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"178":{"tf":1.4142135623730951},"226":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":2.23606797749979},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"73":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":109,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":3,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"68":{"tf":1.0}},"n":{"df":4,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":21,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"4":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"223":{"tf":3.0},"224":{"tf":1.0},"225":{"tf":3.7416573867739413},"226":{"tf":3.3166247903554},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"84":{"tf":2.0},"91":{"tf":2.0},"93":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"4":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"’":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"77":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":13,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"u":{"df":5,"docs":{"19":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"140":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":3.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"151":{"tf":2.23606797749979},"228":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"df":3,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"37":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"170":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"223":{"tf":1.0},"64":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":11,"docs":{"19":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}}},"p":{"df":2,"docs":{"107":{"tf":1.0},"28":{"tf":1.0}},"i":{"c":{"_":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"149":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"57":{"tf":2.23606797749979},"59":{"tf":3.0}}},"k":{"df":9,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"226":{"tf":1.0},"45":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"203":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":2.23606797749979}}}}},"t":{"df":2,"docs":{"113":{"tf":1.0},"176":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"77":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"0":{"tf":1.0},"114":{"tf":1.4142135623730951},"187":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":2.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"71":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}},"p":{"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.0},"225":{"tf":1.4142135623730951},"241":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"n":{"c":{"(":{"b":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"a":{",":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"6":{"4":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"137":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"83":{"tf":1.4142135623730951}},"→":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":2.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":14,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"227":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":3,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":91,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":3.7416573867739413},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.8284271247461903},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"80":{"tf":2.0},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"217":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"210":{"tf":1.0},"214":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"224":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"223":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"214":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"42":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.0},"64":{"tf":1.7320508075688772}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"72":{"tf":1.0}}}},"df":54,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"192":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":56,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.4142135623730951}}}}}},"v":{"0":{".":{"8":{".":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":53,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"3":{"df":18,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"4":{"df":9,"docs":{"119":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}},"5":{"df":11,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}},"6":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0}}},"7":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0}}},"8":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"102":{"tf":1.0},"110":{"tf":2.0},"191":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":11,"docs":{"12":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":66,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":2.449489742783178},"196":{"tf":3.0},"197":{"tf":3.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"1":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"’":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.0},"99":{"tf":1.0}}}}},"df":2,"docs":{"12":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}}}}},"df":11,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"e":{"c":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"191":{"tf":1.0},"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"157":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":2.23606797749979},"238":{"tf":2.23606797749979},"24":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"a":{"df":24,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.7320508075688772},"242":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"221":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":3,"docs":{"37":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":4,"docs":{"221":{"tf":2.8284271247461903},"231":{"tf":1.0},"232":{"tf":2.0},"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"196":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"241":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"241":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"225":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"’":{"d":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"137":{"tf":1.0}},"n":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":21,"docs":{"101":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"95":{"tf":1.0}}},"r":{"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"170":{"tf":1.0},"182":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"’":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"0":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":20,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"217":{"tf":2.0},"5":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"89":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"240":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":27,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"x":{"8":{"6":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"y":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"e":{"df":1,"docs":{"236":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":19,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"z":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":21,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"161":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"228":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"138":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"title":{"root":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"2":{"4":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"3":{"/":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}},"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"157":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"189":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"161":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}},"z":{"df":1,"docs":{"136":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":2,"docs":{"227":{"tf":1.0},"37":{"tf":1.4142135623730951}},"s":{"df":2,"docs":{"164":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.0},"231":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"2":{"tf":1.0},"239":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"220":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.0},"45":{"tf":1.0}},"e":{"2":{"df":2,"docs":{"208":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"172":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"173":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"19":{"tf":1.0},"239":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"114":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"240":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"235":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"72":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"186":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"239":{"tf":1.0}}}},"q":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"148":{"tf":1.0},"39":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"t":{"df":1,"docs":{"126":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"4":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"18":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"56":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"21":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":4,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":2,"docs":{"140":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"35":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"12":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":1,"docs":{"57":{"tf":1.0}}}},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"180":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"177":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"168":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"42":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"178":{"tf":1.0},"42":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"24":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":6,"docs":{"10":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"211":{"tf":1.0},"48":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"212":{"tf":1.0},"229":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"219":{"tf":1.0},"222":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"241":{"tf":1.0},"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":1,"docs":{"228":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"239":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":4,"docs":{"16":{"tf":1.0},"240":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"239":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"56":{"tf":1.0}}}},"df":1,"docs":{"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"v":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"232":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"37":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"177":{"tf":1.0},"238":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.0}}}},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}')); \ No newline at end of file diff --git a/docs/searchindex-339ac392.js b/docs/searchindex-339ac392.js deleted file mode 100644 index 98969dc4e..000000000 --- a/docs/searchindex-339ac392.js +++ /dev/null @@ -1 +0,0 @@ -window.search = Object.assign(window.search, JSON.parse('{"doc_urls":["welcome.html#welcome","welcome.html#target-audience","welcome.html#other-polkadot-contracts-resources","welcome.html#about","user_guide.html#resolc-user-guide","user_guide.html#revive-vs-resolc-nomenclature","user_guide/installation.html#installation","user_guide/installation.html#resolc-binary-releases","user_guide/installation.html#installing-the-solc-dependency","user_guide/installation.html#revive-npm-package","user_guide/installation.html#buidling-resolc-from-source","user_guide/cli.html#cli-usage","user_guide/cli.html#llvm-optimization-levels","user_guide/cli.html#newyork-ir-pipeline","user_guide/cli.html#stack-size","user_guide/cli.html#heap-size","user_guide/cli.html#solc","user_guide/cli.html#debug-artifacts","user_guide/cli.html#debug-info","user_guide/cli.html#deploy-time-linking","user_guide/js.html#js-npm-package","user_guide/tooling.html#tooling-integration","user_guide/tooling.html#solidity-toolkits","user_guide/tooling.html#compiler-explorer","user_guide/tooling.html#remix-ide","user_guide/std_json.html#standard-json-interface","user_guide/std_json.html#the-settingspolkavm-object","user_guide/std_json.html#settingspolkavmdebuginformation","user_guide/std_json.html#settingspolkavmnewyork","user_guide/std_json.html#the-settingspolkavmmemoryconfig-object","user_guide/std_json.html#the-settingsoptimizer-object","user_guide/std_json.html#settingsoptimizermode","user_guide/std_json.html#settingsllvmarguments","user_guide/std_json.html#the-settingsoutputselection-object","user_guide/std_json.html#the-all--wildcard","user_guide/std_json.html#the-contract-level-evm-output-selection","user_guide/differences.html#differences-to-evm","user_guide/differences.html#deploy-code-vs-runtime-code","user_guide/differences.html#solidity","user_guide/differences.html#the-6364-gas-rule","user_guide/differences.html#addresscreationcode","user_guide/differences.html#yul-functions","user_guide/differences.html#mload-mstore-msize-mcopy-memory-related-functions","user_guide/differences.html#calldataload-calldatacopy","user_guide/differences.html#codecopy","user_guide/differences.html#create-create2","user_guide/differences.html#dataoffset","user_guide/differences.html#datasize","user_guide/differences.html#revert-return","user_guide/differences.html#prevrandao-difficulty","user_guide/differences.html#pc-extcodecopy","user_guide/differences.html#blobhash-blobbasefee","user_guide/differences.html#difference-regarding-the-solc-via-ir-mode","user_guide/differences.html#example-state-variable-initialization-order-in-inheritance","user_guide/rust_libraries.html#rust-contract-libraries","revive_runner.html#revive-runner-sandbox","revive_runner.html#installation-and-usage","revive_runner.html#trace-logs","revive_runner.html#automatic-contract-instantiation","revive_runner.html#example","developer_guide.html#developer-guide","developer_guide/contributing.html#contributor-guide","developer_guide/contributing.html#getting-started","developer_guide/contributing.html#using-the-makefile","developer_guide/contributing.html#codebase-organization","developer_guide/contributing.html#contribution-rules","developer_guide/contributing.html#style-guide","developer_guide/contributing.html#ai-policy","developer_guide/architecture.html#compiler-architecture-and-internals","developer_guide/architecture.html#resolc","developer_guide/architecture.html#reproducible-contract-builds","developer_guide/architecture.html#the-revive-compiler-libraries","developer_guide/architecture.html#evm-heap-memory","developer_guide/architecture.html#the-llvm-dependency","developer_guide/architecture.html#custom-optimizations","developer_guide/newyork_optimizer.html#the-newyork-optimizer","developer_guide/newyork_optimizer.html#motivation","developer_guide/newyork_optimizer.html#pipeline-overview","developer_guide/newyork_optimizer.html#ir-design","developer_guide/newyork_optimizer.html#key-optimizations-explained","developer_guide/newyork_optimizer.html#type-narrowing","developer_guide/newyork_optimizer.html#guard-narrowing","developer_guide/newyork_optimizer.html#heap-optimization","developer_guide/newyork_optimizer.html#free-memory-pointer-range-proof","developer_guide/newyork_optimizer.html#soundness-traps-for-fmp-optimizations","developer_guide/newyork_optimizer.html#keccak256-fusion-and-folding","developer_guide/newyork_optimizer.html#compound-outlining-mapping-access","developer_guide/newyork_optimizer.html#fuzzy-function-deduplication","developer_guide/newyork_optimizer.html#revert-pattern-outlining","developer_guide/newyork_optimizer.html#outlined-helper-functions","developer_guide/newyork_optimizer.html#codesize-results","developer_guide/newyork_optimizer.html#integration-test-contracts","developer_guide/newyork_optimizer.html#openzeppelin-contracts","developer_guide/newyork_optimizer.html#development-history-and-challenges","developer_guide/newyork_optimizer.html#approaches-that-did-not-work","developer_guide/newyork_optimizer.html#known-limitations-and-future-work","developer_guide/newyork_optimizer.html#debug-output","developer_guide/newyork_optimizer.html#module-reference","developer_guide/newyork_ir.html#newyork-ir-reference","developer_guide/newyork_ir.html#how-to-read-this-reference","developer_guide/newyork_ir.html#entry-format","developer_guide/newyork_ir.html#syntax-notation","developer_guide/newyork_ir.html#operation-index","developer_guide/newyork_ir.html#type-system","developer_guide/newyork_ir.html#type","developer_guide/newyork_ir.html#bitwidth","developer_guide/newyork_ir.html#addressspace","developer_guide/newyork_ir.html#memoryregion","developer_guide/newyork_ir.html#pure-expressions-1","developer_guide/newyork_ir.html#0xhex","developer_guide/newyork_ir.html#vid","developer_guide/newyork_ir.html#add","developer_guide/newyork_ir.html#sub","developer_guide/newyork_ir.html#mul","developer_guide/newyork_ir.html#div","developer_guide/newyork_ir.html#sdiv","developer_guide/newyork_ir.html#mod","developer_guide/newyork_ir.html#smod","developer_guide/newyork_ir.html#exp","developer_guide/newyork_ir.html#and","developer_guide/newyork_ir.html#or","developer_guide/newyork_ir.html#xor","developer_guide/newyork_ir.html#shl","developer_guide/newyork_ir.html#shr","developer_guide/newyork_ir.html#sar","developer_guide/newyork_ir.html#lt","developer_guide/newyork_ir.html#gt","developer_guide/newyork_ir.html#slt","developer_guide/newyork_ir.html#sgt","developer_guide/newyork_ir.html#eq","developer_guide/newyork_ir.html#byte","developer_guide/newyork_ir.html#signextend","developer_guide/newyork_ir.html#addmod","developer_guide/newyork_ir.html#mulmod","developer_guide/newyork_ir.html#iszero","developer_guide/newyork_ir.html#not","developer_guide/newyork_ir.html#clz","developer_guide/newyork_ir.html#truncateibits","developer_guide/newyork_ir.html#zextibits","developer_guide/newyork_ir.html#sextibits","developer_guide/newyork_ir.html#keccak256","developer_guide/newyork_ir.html#keccak256_pair","developer_guide/newyork_ir.html#keccak256_single","developer_guide/newyork_ir.html#caller","developer_guide/newyork_ir.html#callvalue","developer_guide/newyork_ir.html#origin","developer_guide/newyork_ir.html#address","developer_guide/newyork_ir.html#chainid","developer_guide/newyork_ir.html#gas","developer_guide/newyork_ir.html#msize","developer_guide/newyork_ir.html#coinbase","developer_guide/newyork_ir.html#timestamp","developer_guide/newyork_ir.html#number","developer_guide/newyork_ir.html#difficulty","developer_guide/newyork_ir.html#gaslimit","developer_guide/newyork_ir.html#basefee","developer_guide/newyork_ir.html#blobbasefee","developer_guide/newyork_ir.html#blobhash","developer_guide/newyork_ir.html#blockhash","developer_guide/newyork_ir.html#selfbalance","developer_guide/newyork_ir.html#gasprice","developer_guide/newyork_ir.html#calldataload","developer_guide/newyork_ir.html#calldatasize","developer_guide/newyork_ir.html#returndatasize","developer_guide/newyork_ir.html#codesize","developer_guide/newyork_ir.html#extcodesize","developer_guide/newyork_ir.html#extcodehash","developer_guide/newyork_ir.html#balance","developer_guide/newyork_ir.html#mload","developer_guide/newyork_ir.html#sload","developer_guide/newyork_ir.html#tload","developer_guide/newyork_ir.html#mapping_sload","developer_guide/newyork_ir.html#dataoffset","developer_guide/newyork_ir.html#datasize","developer_guide/newyork_ir.html#loadimmutable","developer_guide/newyork_ir.html#linkersymbol","developer_guide/newyork_ir.html#func_name","developer_guide/newyork_ir.html#memory-and-storage-writes-1","developer_guide/newyork_ir.html#mstore","developer_guide/newyork_ir.html#mstore8","developer_guide/newyork_ir.html#mcopy","developer_guide/newyork_ir.html#sstore","developer_guide/newyork_ir.html#tstore","developer_guide/newyork_ir.html#mapping_sstore","developer_guide/newyork_ir.html#bulk-copies-1","developer_guide/newyork_ir.html#codecopy","developer_guide/newyork_ir.html#extcodecopy","developer_guide/newyork_ir.html#returndatacopy","developer_guide/newyork_ir.html#datacopy","developer_guide/newyork_ir.html#calldatacopy","developer_guide/newyork_ir.html#bindings-and-wrappers-1","developer_guide/newyork_ir.html#let","developer_guide/newyork_ir.html#expression-statement","developer_guide/newyork_ir.html#setimmutable","developer_guide/newyork_ir.html#structured-control-flow-1","developer_guide/newyork_ir.html#if","developer_guide/newyork_ir.html#switch","developer_guide/newyork_ir.html#for","developer_guide/newyork_ir.html#break","developer_guide/newyork_ir.html#continue","developer_guide/newyork_ir.html#leave","developer_guide/newyork_ir.html#nested-block","developer_guide/newyork_ir.html#external-interaction-1","developer_guide/newyork_ir.html#call","developer_guide/newyork_ir.html#callcode","developer_guide/newyork_ir.html#delegatecall","developer_guide/newyork_ir.html#staticcall","developer_guide/newyork_ir.html#create","developer_guide/newyork_ir.html#create2","developer_guide/newyork_ir.html#logn","developer_guide/newyork_ir.html#termination-1","developer_guide/newyork_ir.html#return","developer_guide/newyork_ir.html#revert","developer_guide/newyork_ir.html#stop","developer_guide/newyork_ir.html#invalid","developer_guide/newyork_ir.html#selfdestruct","developer_guide/newyork_ir.html#panic_revert","developer_guide/newyork_ir.html#error_string_revert","developer_guide/newyork_ir.html#custom_error_revert","developer_guide/target.html#pvm-and-the-pallet-revive-runtime-target","developer_guide/target.html#target-cpu-configuration","developer_guide/target.html#why-pvm","developer_guide/target.html#host-environment-pallet-revive","developer_guide/testing.html#testing-strategy","developer_guide/testing.html#bug-compatibility-with-ethereum-solidity","developer_guide/testing.html#differential-integration-tests","developer_guide/testing.html#the-differential-testing-utility","developer_guide/cross_compilation.html#cross-compilation","developer_guide/cross_compilation.html#wasm-via-emscripten","developer_guide/cross_compilation.html#musl-libc","faq.html#faq","faq.html#what-evm-version-do-you-support","faq.html#is-inline-assembly-supported","faq.html#do-you-support-opcode-xy","faq.html#in-what-solidity-version-should-i-write-my-dapp","faq.html#tool-xy-says-the-contract-size-is-larger-than-24kb-and-will-fail-to-deploy","faq.html#is-resolc-a-drop-in-replacement-for-solc","roadmap.html#vision-and-roadmap","roadmap.html#roadmap"],"index":{"documentStore":{"docInfo":{"0":{"body":74,"breadcrumbs":2,"title":1},"1":{"body":22,"breadcrumbs":3,"title":2},"10":{"body":6,"breadcrumbs":7,"title":3},"100":{"body":174,"breadcrumbs":8,"title":2},"101":{"body":235,"breadcrumbs":8,"title":2},"102":{"body":133,"breadcrumbs":8,"title":2},"103":{"body":25,"breadcrumbs":8,"title":2},"104":{"body":36,"breadcrumbs":7,"title":1},"105":{"body":91,"breadcrumbs":7,"title":1},"106":{"body":61,"breadcrumbs":7,"title":1},"107":{"body":80,"breadcrumbs":7,"title":1},"108":{"body":42,"breadcrumbs":8,"title":2},"109":{"body":78,"breadcrumbs":7,"title":1},"11":{"body":33,"breadcrumbs":8,"title":2},"110":{"body":56,"breadcrumbs":7,"title":1},"111":{"body":51,"breadcrumbs":7,"title":1},"112":{"body":47,"breadcrumbs":7,"title":1},"113":{"body":47,"breadcrumbs":7,"title":1},"114":{"body":49,"breadcrumbs":7,"title":1},"115":{"body":58,"breadcrumbs":7,"title":1},"116":{"body":40,"breadcrumbs":7,"title":1},"117":{"body":48,"breadcrumbs":7,"title":1},"118":{"body":51,"breadcrumbs":7,"title":1},"119":{"body":59,"breadcrumbs":6,"title":0},"12":{"body":59,"breadcrumbs":9,"title":3},"120":{"body":30,"breadcrumbs":6,"title":0},"121":{"body":31,"breadcrumbs":7,"title":1},"122":{"body":53,"breadcrumbs":7,"title":1},"123":{"body":65,"breadcrumbs":7,"title":1},"124":{"body":73,"breadcrumbs":7,"title":1},"125":{"body":41,"breadcrumbs":7,"title":1},"126":{"body":41,"breadcrumbs":7,"title":1},"127":{"body":40,"breadcrumbs":7,"title":1},"128":{"body":40,"breadcrumbs":7,"title":1},"129":{"body":38,"breadcrumbs":7,"title":1},"13":{"body":42,"breadcrumbs":9,"title":3},"130":{"body":59,"breadcrumbs":7,"title":1},"131":{"body":76,"breadcrumbs":7,"title":1},"132":{"body":57,"breadcrumbs":7,"title":1},"133":{"body":57,"breadcrumbs":7,"title":1},"134":{"body":33,"breadcrumbs":7,"title":1},"135":{"body":38,"breadcrumbs":6,"title":0},"136":{"body":61,"breadcrumbs":7,"title":1},"137":{"body":67,"breadcrumbs":7,"title":1},"138":{"body":45,"breadcrumbs":7,"title":1},"139":{"body":66,"breadcrumbs":7,"title":1},"14":{"body":62,"breadcrumbs":8,"title":2},"140":{"body":83,"breadcrumbs":7,"title":1},"141":{"body":68,"breadcrumbs":7,"title":1},"142":{"body":42,"breadcrumbs":7,"title":1},"143":{"body":24,"breadcrumbs":7,"title":1},"144":{"body":22,"breadcrumbs":7,"title":1},"145":{"body":25,"breadcrumbs":7,"title":1},"146":{"body":24,"breadcrumbs":7,"title":1},"147":{"body":22,"breadcrumbs":7,"title":1},"148":{"body":42,"breadcrumbs":7,"title":1},"149":{"body":54,"breadcrumbs":7,"title":1},"15":{"body":75,"breadcrumbs":8,"title":2},"150":{"body":23,"breadcrumbs":7,"title":1},"151":{"body":23,"breadcrumbs":7,"title":1},"152":{"body":21,"breadcrumbs":7,"title":1},"153":{"body":27,"breadcrumbs":7,"title":1},"154":{"body":21,"breadcrumbs":7,"title":1},"155":{"body":25,"breadcrumbs":7,"title":1},"156":{"body":26,"breadcrumbs":7,"title":1},"157":{"body":37,"breadcrumbs":7,"title":1},"158":{"body":42,"breadcrumbs":7,"title":1},"159":{"body":26,"breadcrumbs":7,"title":1},"16":{"body":10,"breadcrumbs":7,"title":1},"160":{"body":22,"breadcrumbs":7,"title":1},"161":{"body":40,"breadcrumbs":7,"title":1},"162":{"body":23,"breadcrumbs":7,"title":1},"163":{"body":42,"breadcrumbs":7,"title":1},"164":{"body":23,"breadcrumbs":7,"title":1},"165":{"body":41,"breadcrumbs":7,"title":1},"166":{"body":41,"breadcrumbs":7,"title":1},"167":{"body":42,"breadcrumbs":7,"title":1},"168":{"body":101,"breadcrumbs":7,"title":1},"169":{"body":84,"breadcrumbs":7,"title":1},"17":{"body":43,"breadcrumbs":8,"title":2},"170":{"body":49,"breadcrumbs":7,"title":1},"171":{"body":98,"breadcrumbs":7,"title":1},"172":{"body":54,"breadcrumbs":7,"title":1},"173":{"body":44,"breadcrumbs":7,"title":1},"174":{"body":47,"breadcrumbs":7,"title":1},"175":{"body":43,"breadcrumbs":7,"title":1},"176":{"body":134,"breadcrumbs":7,"title":1},"177":{"body":32,"breadcrumbs":9,"title":3},"178":{"body":110,"breadcrumbs":7,"title":1},"179":{"body":101,"breadcrumbs":7,"title":1},"18":{"body":15,"breadcrumbs":8,"title":2},"180":{"body":95,"breadcrumbs":7,"title":1},"181":{"body":107,"breadcrumbs":7,"title":1},"182":{"body":88,"breadcrumbs":7,"title":1},"183":{"body":112,"breadcrumbs":7,"title":1},"184":{"body":34,"breadcrumbs":8,"title":2},"185":{"body":63,"breadcrumbs":7,"title":1},"186":{"body":81,"breadcrumbs":7,"title":1},"187":{"body":80,"breadcrumbs":7,"title":1},"188":{"body":69,"breadcrumbs":7,"title":1},"189":{"body":63,"breadcrumbs":7,"title":1},"19":{"body":236,"breadcrumbs":9,"title":3},"190":{"body":25,"breadcrumbs":8,"title":2},"191":{"body":98,"breadcrumbs":6,"title":0},"192":{"body":80,"breadcrumbs":8,"title":2},"193":{"body":58,"breadcrumbs":7,"title":1},"194":{"body":35,"breadcrumbs":9,"title":3},"195":{"body":119,"breadcrumbs":6,"title":0},"196":{"body":107,"breadcrumbs":7,"title":1},"197":{"body":211,"breadcrumbs":6,"title":0},"198":{"body":47,"breadcrumbs":7,"title":1},"199":{"body":45,"breadcrumbs":7,"title":1},"2":{"body":7,"breadcrumbs":4,"title":3},"20":{"body":31,"breadcrumbs":9,"title":3},"200":{"body":73,"breadcrumbs":7,"title":1},"201":{"body":48,"breadcrumbs":8,"title":2},"202":{"body":20,"breadcrumbs":8,"title":2},"203":{"body":147,"breadcrumbs":7,"title":1},"204":{"body":68,"breadcrumbs":7,"title":1},"205":{"body":74,"breadcrumbs":7,"title":1},"206":{"body":70,"breadcrumbs":7,"title":1},"207":{"body":85,"breadcrumbs":7,"title":1},"208":{"body":61,"breadcrumbs":7,"title":1},"209":{"body":94,"breadcrumbs":7,"title":1},"21":{"body":9,"breadcrumbs":7,"title":2},"210":{"body":30,"breadcrumbs":7,"title":1},"211":{"body":62,"breadcrumbs":7,"title":1},"212":{"body":68,"breadcrumbs":7,"title":1},"213":{"body":28,"breadcrumbs":7,"title":1},"214":{"body":33,"breadcrumbs":7,"title":1},"215":{"body":55,"breadcrumbs":7,"title":1},"216":{"body":89,"breadcrumbs":7,"title":1},"217":{"body":100,"breadcrumbs":7,"title":1},"218":{"body":91,"breadcrumbs":7,"title":1},"219":{"body":9,"breadcrumbs":12,"title":5},"22":{"body":14,"breadcrumbs":7,"title":2},"220":{"body":14,"breadcrumbs":10,"title":3},"221":{"body":199,"breadcrumbs":8,"title":1},"222":{"body":34,"breadcrumbs":11,"title":4},"223":{"body":63,"breadcrumbs":6,"title":2},"224":{"body":34,"breadcrumbs":8,"title":4},"225":{"body":187,"breadcrumbs":7,"title":3},"226":{"body":73,"breadcrumbs":7,"title":3},"227":{"body":19,"breadcrumbs":6,"title":2},"228":{"body":69,"breadcrumbs":7,"title":3},"229":{"body":12,"breadcrumbs":6,"title":2},"23":{"body":11,"breadcrumbs":7,"title":2},"230":{"body":0,"breadcrumbs":2,"title":1},"231":{"body":12,"breadcrumbs":4,"title":3},"232":{"body":10,"breadcrumbs":4,"title":3},"233":{"body":4,"breadcrumbs":4,"title":3},"234":{"body":25,"breadcrumbs":5,"title":4},"235":{"body":13,"breadcrumbs":9,"title":8},"236":{"body":9,"breadcrumbs":5,"title":4},"237":{"body":66,"breadcrumbs":4,"title":2},"238":{"body":49,"breadcrumbs":3,"title":1},"24":{"body":14,"breadcrumbs":7,"title":2},"25":{"body":15,"breadcrumbs":9,"title":3},"26":{"body":6,"breadcrumbs":8,"title":2},"27":{"body":9,"breadcrumbs":7,"title":1},"28":{"body":31,"breadcrumbs":7,"title":1},"29":{"body":31,"breadcrumbs":8,"title":2},"3":{"body":15,"breadcrumbs":1,"title":0},"30":{"body":8,"breadcrumbs":8,"title":2},"31":{"body":10,"breadcrumbs":7,"title":1},"32":{"body":13,"breadcrumbs":7,"title":1},"33":{"body":4,"breadcrumbs":8,"title":2},"34":{"body":63,"breadcrumbs":7,"title":1},"35":{"body":83,"breadcrumbs":11,"title":5},"36":{"body":23,"breadcrumbs":7,"title":2},"37":{"body":41,"breadcrumbs":10,"title":5},"38":{"body":6,"breadcrumbs":6,"title":1},"39":{"body":18,"breadcrumbs":8,"title":3},"4":{"body":43,"breadcrumbs":6,"title":3},"40":{"body":5,"breadcrumbs":6,"title":1},"41":{"body":58,"breadcrumbs":7,"title":2},"42":{"body":64,"breadcrumbs":12,"title":7},"43":{"body":16,"breadcrumbs":7,"title":2},"44":{"body":3,"breadcrumbs":6,"title":1},"45":{"body":101,"breadcrumbs":7,"title":2},"46":{"body":3,"breadcrumbs":6,"title":1},"47":{"body":7,"breadcrumbs":6,"title":1},"48":{"body":8,"breadcrumbs":7,"title":2},"49":{"body":4,"breadcrumbs":7,"title":2},"5":{"body":52,"breadcrumbs":7,"title":4},"50":{"body":10,"breadcrumbs":7,"title":2},"51":{"body":20,"breadcrumbs":7,"title":2},"52":{"body":24,"breadcrumbs":11,"title":6},"53":{"body":57,"breadcrumbs":11,"title":6},"54":{"body":167,"breadcrumbs":9,"title":3},"55":{"body":36,"breadcrumbs":6,"title":3},"56":{"body":21,"breadcrumbs":5,"title":2},"57":{"body":38,"breadcrumbs":5,"title":2},"58":{"body":15,"breadcrumbs":6,"title":3},"59":{"body":120,"breadcrumbs":4,"title":1},"6":{"body":24,"breadcrumbs":5,"title":1},"60":{"body":11,"breadcrumbs":4,"title":2},"61":{"body":11,"breadcrumbs":6,"title":2},"62":{"body":8,"breadcrumbs":6,"title":2},"63":{"body":39,"breadcrumbs":6,"title":2},"64":{"body":85,"breadcrumbs":6,"title":2},"65":{"body":44,"breadcrumbs":6,"title":2},"66":{"body":107,"breadcrumbs":6,"title":2},"67":{"body":112,"breadcrumbs":6,"title":2},"68":{"body":58,"breadcrumbs":7,"title":3},"69":{"body":55,"breadcrumbs":5,"title":1},"7":{"body":21,"breadcrumbs":7,"title":3},"70":{"body":76,"breadcrumbs":7,"title":3},"71":{"body":65,"breadcrumbs":7,"title":3},"72":{"body":57,"breadcrumbs":7,"title":3},"73":{"body":69,"breadcrumbs":6,"title":2},"74":{"body":49,"breadcrumbs":6,"title":2},"75":{"body":44,"breadcrumbs":6,"title":2},"76":{"body":84,"breadcrumbs":5,"title":1},"77":{"body":372,"breadcrumbs":6,"title":2},"78":{"body":116,"breadcrumbs":6,"title":2},"79":{"body":0,"breadcrumbs":7,"title":3},"8":{"body":13,"breadcrumbs":7,"title":3},"80":{"body":182,"breadcrumbs":6,"title":2},"81":{"body":72,"breadcrumbs":6,"title":2},"82":{"body":118,"breadcrumbs":6,"title":2},"83":{"body":147,"breadcrumbs":9,"title":5},"84":{"body":349,"breadcrumbs":8,"title":4},"85":{"body":148,"breadcrumbs":7,"title":3},"86":{"body":43,"breadcrumbs":8,"title":4},"87":{"body":32,"breadcrumbs":7,"title":3},"88":{"body":56,"breadcrumbs":7,"title":3},"89":{"body":84,"breadcrumbs":7,"title":3},"9":{"body":5,"breadcrumbs":7,"title":3},"90":{"body":0,"breadcrumbs":6,"title":2},"91":{"body":67,"breadcrumbs":7,"title":3},"92":{"body":79,"breadcrumbs":6,"title":2},"93":{"body":216,"breadcrumbs":7,"title":3},"94":{"body":137,"breadcrumbs":6,"title":2},"95":{"body":137,"breadcrumbs":8,"title":4},"96":{"body":67,"breadcrumbs":6,"title":2},"97":{"body":139,"breadcrumbs":6,"title":2},"98":{"body":16,"breadcrumbs":9,"title":3},"99":{"body":74,"breadcrumbs":8,"title":2}},"docs":{"0":{"body":"Hello and a warm welcome to the revive Solidity compiler book! Warning Solidity on PVM is running on the pallet-revive runtime. This introduces observable semantic differences in comparison with the EVM. Study the differences section carefully. Ignoring these differences may lead to defunct contracts. Notable examples: The 63/64 gas rule isn’t implemented in the pallet (introduces potential DoS vector when calling other contracts) Contract instantiation works differently (by hash instead of by code) The gas model implemented by pallet-revive differs from Ethereum The heap size is fixed instead of gas-metered and there’s a fixed amount of stack size (contracts working fine on EVM may trap on PVM)","breadcrumbs":"Welcome » Welcome","id":"0","title":"Welcome"},"1":{"body":"Solidity dApp developers should read the user guide. Solidity on PolkaVM introduces important differences to EVM which should be well understood. Contributors will find the developer guide helpful for getting up to speed.","breadcrumbs":"Welcome » Target audience","id":"1","title":"Target audience"},"10":{"body":"Please follow the build instructions in the revive README.md.","breadcrumbs":"resolc user guide » Installation » Buidling resolc from source","id":"10","title":"Buidling resolc from source"},"100":{"body":"Each operation entry has the same shape: Field What it shows Heading The printed operation name (e.g. mstore) followed by the Expression or Statement variant it corresponds to in ir.rs. Description A short prose summary of what the operation does and any semantic notes worth knowing before reading the rest of the entry. Syntax The literal printer output, including any optional debug annotations (region tags, static-slot comments). Anything inside /* ... */ is a debug-only annotation and is not part of the operation itself. Example A minimal printed snippet, using the printer’s actual v0/ v1/… naming. Operands One row per input or structural participant in the printed syntax. Value operands list the narrowest type the operation guarantees (default i256; narrower widths only appear when type inference has narrowed an upstream definition). Vector-of-operands fields show Vec<…> as the type. Non-value participants such as nested regions are listed with an em-dash type to mark them as structural rather than as operands. Result and purity The type the operation produces (or none for statements that bind no value), followed by a purity label, either Pure or Effectful. Pure operations may be reordered, deduplicated, or eliminated by the simplifier; effectful ones may not. Effectful entries may carry a parenthetical describing the nature of the side effect when informative (e.g. “control flow”, “terminator”, or a note about revert/trap behavior). Annotations Operation-specific fields the printer surfaces as /* ... */ comments in the dump (region tag for memory ops, static-slot hint for storage ops, type suffix for non-default widths). Listed here as a table of source field → printed form.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Entry format","id":"100","title":"Entry format"},"101":{"body":"Syntax templates in each entry use the following conventions: Notation Meaning add, mload, if, else, case, let, yield, … Literal printer tokens: bare lowercase identifiers and keywords that the printer emits verbatim. $offset, $value, $key, $lhs, $rhs, … Role names ( $-prefixed): placeholders for SSA value references the printer renders as v followed by a decimal id ( v0, v1, …). , , , , , , , , … Metavariables: stand for compile-time fields (type tags, hex values, identifier strings, integer counts), not SSA values. The concrete values they take are enumerated in the Annotations section of each entry or in the type system reference. […] Optional parts. Anything inside the brackets may or may not appear in any given dump, depending on the conditions described in the operation’s Annotations section. [: ] Optional type suffix on a value reference. Suppressed when the value’s type is the default i256 integer; present otherwise ( : i32, : ptr, …). /* … */ Debug-only annotations the printer attaches to certain operations (memory region tag, static-slot hint, etc.). … Repetition: “more entries of the same shape.” Used in vector operand lists ( $arg_0, $arg_1, …) and in multi-line block bodies ( { … }). For instance, this template: let $result[: ] := and($lhs[: ], $rhs[: ]) prints as: let v2: i8 := and(v0, v1: i8) $result rendered as v2 with an i8 type suffix, $lhs as v0 at the default i256 (type suffix omitted), and $rhs as v1 with an i8 type suffix. Note A value’s printed width is use-driven. Type inference assigns each value a forward width from its definition, then widens it to satisfy its uses. The type suffix shown for a value in an example (such as i8) is therefore only illustrative — a short example may not show the uses that determine it, and the same operation can appear with a wider suffix, or none (it is omitted for the default i256), in another program. For instance, a value used as a memory offset widens to i64; as an address (a call target, extcodesize) to i160; stored as a full word (an mstore/ sstore value) to i256; and an add/ mul operand up to the i64 register width.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Syntax notation","id":"101","title":"Syntax notation"},"102":{"body":"Pure expressions Constants and variables 0x v Arithmetic add sub mul div sdiv mod smod exp and or xor shl shr sar lt gt slt sgt eq byte signextend addmod mulmod iszero not clz Bit-width conversions truncate> zext> sext> Hashing keccak256 keccak256_pair keccak256_single Environment reads caller callvalue origin address chainid gas msize coinbase timestamp number difficulty gaslimit basefee blobbasefee blobhash blockhash selfbalance gasprice Calldata, returndata, and code calldataload calldatasize returndatasize codesize extcodesize extcodehash balance Memory and storage loads mload sload tload mapping_sload Linker dataoffset datasize loadimmutable linkersymbol Function call Memory and storage writes mstore mstore8 mcopy sstore tstore mapping_sstore Bulk copies codecopy extcodecopy returndatacopy datacopy calldatacopy Bindings and wrappers let expression statement setimmutable Structured control flow if switch for break continue leave nested block External interaction call callcode delegatecall staticcall create create2 log Termination return revert stop invalid selfdestruct panic_revert error_string_revert custom_error_revert","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Operation index","id":"102","title":"Operation index"},"103":{"body":"Every value in the IR carries a Type. The operation entries below refer to widths ( i1… i256), address spaces ( ptr, etc.), and memory regions ( scratch, etc.) by their printed form; this section is the reference for those names.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Type system","id":"103","title":"Type system"},"104":{"body":"The umbrella enum, with these variants: Variant Printed as Description Int(BitWidth) i1, i8, …, i256 An integer at one of the BitWidth widths. Ptr(AddressSpace) ptr, ptr, ptr, ptr A pointer tagged with its address space; see AddressSpace. Void void Unit type. Used for statements that produce no value and for void-returning functions.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Type","id":"104","title":"Type"},"105":{"body":"The rungs of integer width. Newly minted values default to I256; type inference narrows them down to one of the lower rungs when it can prove the upper bits are zero or unused. Variant Printed as Typical use I1 i1 Boolean. Result type of every comparison and iszero. I8 i8 Byte values. The narrowest meaningful integer. I32 i32 PolkaVM pointer width (XLEN); minimum width for function parameters under the rv64e ABI. I64 i64 PolkaVM native register width; most narrowed values land here. I128 i128 Two registers; arithmetic that overflows i64 but doesn’t need full 256-bit emulation. I160 i160 Ethereum addresses; result of caller, origin, mapping keys. I256 i256 EVM word width. The default and conservative ceiling.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » BitWidth","id":"105","title":"BitWidth"},"106":{"body":"The address space a pointer points into. Carried on every Ptr value so the codegen can lower loads and stores without a separate alias-analysis pass. Variant Printed as Points into Endianness Heap ptr Emulated EVM linear memory (the simulated mload/ mstore region). Big-endian (by EVM contract). Stack ptr Native PolkaVM stack allocations. Little-endian (no swap). Storage ptr Contract storage; key/value with 256-bit slots. Big-endian on the wire. Code ptr Read-only code/data segment. Big-endian.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » AddressSpace","id":"106","title":"AddressSpace"},"107":{"body":"A refinement carried by every memory load and store on top of AddressSpace::Heap. The tag tells later passes what kind of heap address an offset is hitting, which drives both free-memory-pointer propagation and byte-swap elimination. Variant Address range Printed as Meaning Scratch 0x00– 0x3f /* scratch */ EVM scratch space; safe to touch without consulting the free memory pointer. FreePointerSlot exactly 0x40 /* free_ptr */ Slot that stores the free memory pointer itself. Dynamic 0x80 and above /* dynamic */ Real heap allocations. Unknown everything else (constants in 0x41– 0x7f, plus all non-constant offsets) (suppressed) Conservative fallback used when the offset isn’t a constant or doesn’t slot cleanly.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » MemoryRegion","id":"107","title":"MemoryRegion"},"108":{"body":"Pure expressions produce values without side effects. The simplifier may freely reorder, deduplicate, and eliminate them. They appear on the right-hand side of a let binding, or as operands of other expressions and effectful statements; the operand positions accept SSA value references only, so any pure expression that is consumed elsewhere is first bound by a let. Examples in this section wrap each expression in a let v := … to give it somewhere to land.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Pure expressions","id":"108","title":"Pure expressions"},"109":{"body":"( Expression::Literal) Description A compile-time constant value with a declared type. New literals minted by the translator default to Int(I256); passes that synthesize constants at narrower widths (e.g. a one-bit boolean from a constant comparison) attach the narrower type directly. Syntax 0x[: ] Example let v0: i8 := 0x2a\\nlet v1: i1 := 0x1 // boolean true\\nlet v2: i64 := 0x80 Operands None — literals are leaves. Result and purity Result Purity Same as the literal’s value_type Pure Annotations Source field Printed as value: BigUint 0x in the syntax position (not a comment annotation; it is the expression itself) value_type: Type : suffix when value_type is not the default Int(I256); suppressed otherwise","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » 0x","id":"109","title":"0x"},"11":{"body":"We aim to keep the resolc CLI usage close to solc. There are a few things and options worthwhile to know about in resolc which do not exist in the Ethereum world. This chapter explains those in more detail than the CLI help message. Tip For the complete help about CLI options, please see resolc --help.","breadcrumbs":"resolc user guide » Command Line Interface » CLI usage","id":"11","title":"CLI usage"},"110":{"body":"( Expression::Var) Description A reference to an existing SSA value, used as the entire right-hand side of a let. In a typical dump this is rare because the simplifier collapses let v := v into the consumers of v via copy propagation; expect to see it only in dumps taken before simplification has run. Syntax v Example let v5 := v3 // copy; usually eliminated by simplify Operands None — the expression is the value reference itself. Result and purity Result Purity Same as the referenced value’s type Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » v","id":"110","title":"v"},"111":{"body":"( Expression::Binary with BinaryOperation::Add) Description Modular addition. Wraps on overflow; per EVM, the result is (lhs + rhs) mod 2^N where N is the operand width. Syntax add($lhs[: ], $rhs[: ]) Example let v2 := add(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity widen_by_one(max(width(lhs), width(rhs))) — one tier above the wider operand to account for the carry bit Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » add","id":"111","title":"add"},"112":{"body":"( Expression::Binary with BinaryOperation::Sub) Description Modular subtraction. Wraps on underflow; the result is (lhs - rhs) mod 2^256 regardless of operand widths. Syntax sub($lhs[: ], $rhs[: ]) Example let v2 := sub(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity i256 — conservative; underflow on narrower operands could borrow into upper bits Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sub","id":"112","title":"sub"},"113":{"body":"( Expression::Binary with BinaryOperation::Mul) Description Modular multiplication. The result is (lhs * rhs) mod 2^256. Syntax mul($lhs[: ], $rhs[: ]) Example let v2 := mul(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity double_width(max(width(lhs), width(rhs))) — the tier holding twice the wider operand’s bits (skipping i160 at the i128 → i256 transition) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mul","id":"113","title":"mul"},"114":{"body":"( Expression::Binary with BinaryOperation::Div) Description Unsigned integer division. Per EVM, div(x, 0) = 0 (no trap on division by zero). Syntax div($lhs[: ], $rhs[: ]) Example let v2 := div(v0, v1) Operands Name Type Notes lhs i256 Dividend. rhs i256 Divisor; 0 yields a result of 0, not a trap. Result and purity Result Purity width(lhs) — the quotient cannot exceed the dividend Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » div","id":"114","title":"div"},"115":{"body":"( Expression::Binary with BinaryOperation::SDiv) Description Signed two’s-complement integer division. Per EVM, sdiv(x, 0) = 0; quotient is truncated toward zero. Syntax sdiv($lhs[: ], $rhs[: ]) Example let v2 := sdiv(v0, v1) Operands Name Type Notes lhs i256 Dividend, treated as signed. rhs i256 Divisor, treated as signed; 0 yields 0. Result and purity Result Purity max(width(lhs), width(rhs)) — a negative divisor can push the result to full width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sdiv","id":"115","title":"sdiv"},"116":{"body":"( Expression::Binary with BinaryOperation::Mod) Description Unsigned modulo. Per EVM, mod(x, 0) = 0. Syntax mod($lhs[: ], $rhs[: ]) Example let v2 := mod(v0, v1) Operands Name Type Notes lhs i256 Dividend. rhs i256 Divisor; 0 yields 0. Result and purity Result Purity width(lhs) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mod","id":"116","title":"mod"},"117":{"body":"( Expression::Binary with BinaryOperation::SMod) Description Signed modulo. Per EVM, smod(x, 0) = 0; the result takes the sign of the dividend. Syntax smod($lhs[: ], $rhs[: ]) Example let v2 := smod(v0, v1) Operands Name Type Notes lhs i256 Dividend, treated as signed. rhs i256 Divisor, treated as signed; 0 yields 0. Result and purity Result Purity width(lhs) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » smod","id":"117","title":"smod"},"118":{"body":"( Expression::Binary with BinaryOperation::Exp) Description Modular exponentiation: (base ^ exponent) mod 2^256. The most expensive arithmetic opcode in EVM (variable gas cost proportional to the byte length of exponent). Syntax exp($base[: ], $exponent[: ]) Example let v2 := exp(v0, v1) Operands Name Type Notes base i256 Base. exponent i256 Exponent. Result and purity Result Purity i256 — conservative; exponentiation can fill any width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » exp","id":"118","title":"exp"},"119":{"body":"( Expression::Binary with BinaryOperation::And) Description Bitwise AND. The common idiom for type narrowing: a constant mask on the right lets forward analysis pick up a tight result width. Syntax and($lhs[: ], $rhs[: ]) Example let v2 := and(v0, v1)\\nlet v3: i8 := 0xff\\nlet v4: i8 := and(v0, v3: i8) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity min(width(lhs), width(rhs)) — AND can only clear bits, so the result fits in the narrower operand Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » and","id":"119","title":"and"},"12":{"body":"-O, --optimization resolc exposes the optimization level setting for the LLVM backend. The performance and size of compiled contracts varies widely between different optimization levels. (This is independent of --newyork which selects the IR lowering pipeline.) Valid levels are the following: 0: No optimizations are applied. 1: Basic optimizations for execution time. 2: Advanced optimizations for execution time. 3: Aggressive optimizations for execution time. s: Optimize for code size. z: Aggressively optimize for code size. By default, -Oz is applied.","breadcrumbs":"resolc user guide » Command Line Interface » LLVM optimization levels","id":"12","title":"LLVM optimization levels"},"120":{"body":"( Expression::Binary with BinaryOperation::Or) Description Bitwise OR. Syntax or($lhs[: ], $rhs[: ]) Example let v2 := or(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity max(width(lhs), width(rhs)) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » or","id":"120","title":"or"},"121":{"body":"( Expression::Binary with BinaryOperation::Xor) Description Bitwise XOR. Syntax xor($lhs[: ], $rhs[: ]) Example let v2 := xor(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity max(width(lhs), width(rhs)) Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » xor","id":"121","title":"xor"},"122":{"body":"( Expression::Binary with BinaryOperation::Shl) Description Logical left shift. Operand order follows EVM: shl(shift, value) computes value << shift. Shifts ≥ 256 produce 0. Syntax shl($shift[: ], $value[: ]) Example let v2 := shl(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift. Result and purity Result Purity i256 — conservative; bits may shift into any width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » shl","id":"122","title":"shl"},"123":{"body":"( Expression::Binary with BinaryOperation::Shr) Description Logical right shift. Operand order follows EVM: shr(shift, value) computes value >> shift with zero-fill from the left. Shifts ≥ 256 produce 0. Syntax shr($shift[: ], $value[: ]) Example let v2 := shr(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift. Result and purity Result Purity If shift is a known constant k: tier holding 256 - k bits (or i1 for k ≥ 256). Otherwise: width(value). Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » shr","id":"123","title":"shr"},"124":{"body":"( Expression::Binary with BinaryOperation::Sar) Description Arithmetic (signed) right shift. Operand order follows EVM: sar(shift, value) shifts value right by shift bits, preserving the sign bit. Shifts ≥ 256 saturate to 0 for non-negative values and to -1 (all-ones) for negative values. Syntax sar($shift[: ], $value[: ]) Example let v2 := sar(v0, v1) Operands Name Type Notes shift i256 Shift amount in bits. value i256 Value to shift, treated as signed. Result and purity Result Purity width(value) — unlike shr, sign-extension means a constant shift cannot narrow the result Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sar","id":"124","title":"sar"},"125":{"body":"( Expression::Binary with BinaryOperation::Lt) Description Unsigned less-than comparison. Returns 1 if lhs < rhs, else 0. Syntax lt($lhs[: ], $rhs[: ]) Example let v2: i1 := lt(v0, v1) Operands Name Type Notes lhs i256 Compared unsigned. rhs i256 Compared unsigned. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » lt","id":"125","title":"lt"},"126":{"body":"( Expression::Binary with BinaryOperation::Gt) Description Unsigned greater-than comparison. Returns 1 if lhs > rhs, else 0. Syntax gt($lhs[: ], $rhs[: ]) Example let v2: i1 := gt(v0, v1) Operands Name Type Notes lhs i256 Compared unsigned. rhs i256 Compared unsigned. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gt","id":"126","title":"gt"},"127":{"body":"( Expression::Binary with BinaryOperation::Slt) Description Signed less-than comparison. Operands are treated as two’s complement. Syntax slt($lhs[: ], $rhs[: ]) Example let v2: i1 := slt(v0, v1) Operands Name Type Notes lhs i256 Compared signed. rhs i256 Compared signed. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » slt","id":"127","title":"slt"},"128":{"body":"( Expression::Binary with BinaryOperation::Sgt) Description Signed greater-than comparison. Operands are treated as two’s complement. Syntax sgt($lhs[: ], $rhs[: ]) Example let v2: i1 := sgt(v0, v1) Operands Name Type Notes lhs i256 Compared signed. rhs i256 Compared signed. Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sgt","id":"128","title":"sgt"},"129":{"body":"( Expression::Binary with BinaryOperation::Eq) Description Equality comparison. Returns 1 if lhs == rhs, else 0. Signedness is irrelevant. Syntax eq($lhs[: ], $rhs[: ]) Example let v2: i1 := eq(v0, v1) Operands Name Type Notes lhs i256 — rhs i256 — Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » eq","id":"129","title":"eq"},"13":{"body":"--newyork Enables the newyork optimizer to reduced compiled contract code size, by routing Yul lowering through the experimental newyork IR pipeline instead of the standard Yul-to-LLVM path. Composes with --yul, --combined-json, and the default Solidity mode. In standard JSON mode this flag is rejected; enable the pipeline via the settings.polkavm.newyork input field instead. Off by default.","breadcrumbs":"resolc user guide » Command Line Interface » newyork IR pipeline","id":"13","title":"newyork IR pipeline"},"130":{"body":"( Expression::Binary with BinaryOperation::Byte) Description Extract a single byte from a 256-bit word. byte(i, x) returns the i-th byte of x with byte 0 being the most significant. If i ≥ 32, the result is 0. Syntax byte($index[: ], $word[: ]) Example let v2: i8 := byte(v0, v1) Operands Name Type Notes index i256 Byte position; 0 = most significant byte. Values ≥ 32 yield 0. word i256 Source word. Result and purity Result Purity i8 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » byte","id":"130","title":"byte"},"131":{"body":"( Expression::Binary with BinaryOperation::SignExtend) Description Sign-extend an integer from a byte position. Per EVM, signextend(b, x) treats byte b of x as the most significant byte of a smaller signed integer and extends its sign through the upper bytes. Syntax signextend($byte_position[: ], $value[: ]) Example let v2 := signextend(v0, v1) Operands Name Type Notes byte_position i256 Byte position of the sign byte (0–31). value i256 Source value. Result and purity Result Purity i256 — the extended value occupies the full word Pure Annotations The width-targeted sign-extension primitive sext> ( Expression::SignExtendTo) is a separate operation; see the bit-width conversions section.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » signextend","id":"131","title":"signextend"},"132":{"body":"( Expression::Ternary with BinaryOperation::AddMod) Description Ternary modular addition: (a + b) mod n, computed without intermediate overflow. Per EVM, n = 0 yields 0. Syntax addmod($a[: ], $b[: ], $n[: ]) Example let v3 := addmod(v0, v1, v2) Operands Name Type Notes a i256 First addend. b i256 Second addend. n i256 Modulus; 0 yields 0. Result and purity Result Purity i256 — conservative Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » addmod","id":"132","title":"addmod"},"133":{"body":"( Expression::Ternary with BinaryOperation::MulMod) Description Ternary modular multiplication: (a * b) mod n, computed without intermediate overflow. Per EVM, n = 0 yields 0. Syntax mulmod($a[: ], $b[: ], $n[: ]) Example let v3 := mulmod(v0, v1, v2) Operands Name Type Notes a i256 First factor. b i256 Second factor. n i256 Modulus; 0 yields 0. Result and purity Result Purity i256 — conservative Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mulmod","id":"133","title":"mulmod"},"134":{"body":"( Expression::Unary with UnaryOperation::IsZero) Description Returns 1 if the operand is 0, else 0. Also serves as the logical NOT for boolean values. Syntax iszero($operand[: ]) Example let v1: i1 := iszero(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i1 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » iszero","id":"134","title":"iszero"},"135":{"body":"( Expression::Unary with UnaryOperation::Not) Description Bitwise complement. Inverts every bit; equivalent to xor(operand, 2^256 - 1). Syntax not($operand[: ]) Example let v1 := not(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i256 — the complement fills the full word regardless of operand width Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » not","id":"135","title":"not"},"136":{"body":"( Expression::Unary with UnaryOperation::Clz) Description Count leading zeros. Returns the number of leading zero bits in the operand, where a value of 0 returns 256 (the full width). Not an EVM opcode; reaches newyork as a Yul builtin ( FunctionName::Clz) and is translated directly by the Yul-to-newyork translator. Syntax clz($operand[: ]) Example let v1 := clz(v0) Operands Name Type Notes operand i256 — Result and purity Result Purity i256 — in practice the value fits in nine bits (max 256), so type inference often narrows further Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » clz","id":"136","title":"clz"},"137":{"body":"( Expression::Truncate) Description Reinterpret a wider integer as a narrower one by discarding the upper bits. The destination width is carried in the IR’s to: BitWidth field and is rendered inside the angle brackets of the printer mnemonic. Narrowing-only; the source width must be greater than or equal to the destination width. Syntax truncate>($value[: ]) Example let v1: i64 := truncate(v0)\\nlet v2: i8 := truncate(v1: i64) Operands Name Type Notes value i256 Source value; must be at least as wide as the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None. The destination width is part of the operation name, not a debug annotation.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » truncate>","id":"137","title":"truncate>"},"138":{"body":"( Expression::ZeroExtend) Description Reinterpret a narrower integer as a wider one by zero-filling the upper bits. The destination width is carried in the IR’s to: BitWidth field. Widening-only. Syntax zext>($value[: ]) Example let v1 := zext(v0: i8) Operands Name Type Notes value i256 Source value; must be no wider than the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » zext>","id":"138","title":"zext>"},"139":{"body":"( Expression::SignExtendTo) Description Reinterpret a narrower signed integer as a wider one by sign-extending the high bit. The destination width is carried in the IR’s to: BitWidth field. Distinct from signextend ( Expression::Binary), which is the EVM byte-position primitive; this one specifies the destination width directly and is introduced by passes that produce a sign-extended value at a known target width. Syntax sext>($value[: ]) Example let v1 := sext(v0: i64) Operands Name Type Notes value i256 Source value; must be no wider than the destination. Result and purity Result Purity The destination width from the to field Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sext>","id":"139","title":"sext>"},"14":{"body":"--stack-size PVM is a register machine with a traditional stack memory space for local variables. This controls the total amount of stack space the contract can use. You are incentivized to keep this value as small as possible: Increasing the stack size will increase gas costs due to increased startup costs. The stack size contributes to the total memory size a contract can use, which includes the contract’s code size. Default value: 131072 Warning If the contract uses more stack memory than configured, it will compile fine but eventually revert execution at runtime!","breadcrumbs":"resolc user guide » Command Line Interface » Stack size","id":"14","title":"Stack size"},"140":{"body":"( Expression::Keccak256) Description Compute the Keccak-256 hash of length bytes of emulated EVM linear memory starting at offset. The general-purpose hashing primitive; the specialized variants below cover the common scratch-space patterns more compactly. Syntax keccak256($offset[: ], $length[: ]) Example let v2 := keccak256(v0, v1) Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. length i256 Length of the region to hash, in bytes; forward analysis widens to at least i64. Result and purity Result Purity i256 Pure — the hash is a deterministic function of the memory contents at evaluation time. Passes that hoist or dedupe must respect intervening memory writes. Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256","id":"140","title":"keccak256"},"141":{"body":"( Expression::Keccak256Pair) Description Compound hash of two 256-bit words. Equivalent to mstore(0, word0); mstore(32, word1); keccak256(0, 64) but emitted as a single outlined call after mem_opt’s keccak fusion recognizes the pattern. The mapping-key idiom; see also mapping_sload. Syntax keccak256_pair($word0[: ], $word1[: ]) Example let v2 := keccak256_pair(v0, v1) Operands Name Type Notes word0 i256 First word; the high 32 bytes of the hash input. word1 i256 Second word; the low 32 bytes of the hash input. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256_pair","id":"141","title":"keccak256_pair"},"142":{"body":"( Expression::Keccak256Single) Description Compound hash of a single 256-bit word. Equivalent to mstore(0, word0); keccak256(0, 32) but emitted as a single outlined call after mem_opt’s keccak fusion. Syntax keccak256_single($word0[: ]) Example let v1 := keccak256_single(v0) Operands Name Type Notes word0 i256 The word to hash. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » keccak256_single","id":"142","title":"keccak256_single"},"143":{"body":"( Expression::Caller) Description Address of the immediate caller of the current call frame. Syntax caller() Example let v0: i160 := caller() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » caller","id":"143","title":"caller"},"144":{"body":"( Expression::CallValue) Description Value (wei) attached to the current call. Syntax callvalue() Example let v0 := callvalue() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » callvalue","id":"144","title":"callvalue"},"145":{"body":"( Expression::Origin) Description Address of the original externally owned account that initiated the transaction. Syntax origin() Example let v0: i160 := origin() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » origin","id":"145","title":"origin"},"146":{"body":"( Expression::Address) Description Address of the contract executing the current call frame. Syntax address() Example let v0: i160 := address() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » address","id":"146","title":"address"},"147":{"body":"( Expression::ChainId) Description Chain identifier of the network the contract is executing on. Syntax chainid() Example let v0 := chainid() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » chainid","id":"147","title":"chainid"},"148":{"body":"( Expression::Gas) Description Remaining gas at the point of evaluation. Modeled as a pure expression for IR purposes; in practice it changes between evaluations, so any simplifier that deduplicates pure expressions must respect gas as a barrier. Syntax gas() Example let v0: i64 := gas() Operands None. Result and purity Result Purity i64 Pure (per IR; see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gas","id":"148","title":"gas"},"149":{"body":"( Expression::MSize) Description Highest byte offset of emulated EVM linear memory that has been touched, rounded up to the next 32-byte boundary. Unlike gas, classified as side-effectful by the simplifier: unused msize() bindings are not eliminated, because the result depends on the program’s memory-access history and would change if the surrounding statements were reordered. Syntax msize() Example let v0: i64 := msize() Operands None. Result and purity Result Purity i64 Effectful (see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » msize","id":"149","title":"msize"},"15":{"body":"--heap-size Unlike the EVM, due to the lack of dynamic memory metering, PVM contracts emulate the EVM heap memory with a static buffer. Consequentially, instead of infinite memory with exponentially growing gas costs, PVM contracts have a finite amount of memory with constant gas costs available. You are incentivized to keep this value as small as possible:\\n1.Increasing the heap size will increase startup costs.\\n2.The heap size contributes to the total memory size a contract can use, which includes the contract’s code size Default value: 131072 Warning If the contract uses more heap memory than configured, it will compile fine but eventually revert execution at runtime!","breadcrumbs":"resolc user guide » Command Line Interface » Heap size","id":"15","title":"Heap size"},"150":{"body":"( Expression::Coinbase) Description Address of the block’s coinbase (block author). Syntax coinbase() Example let v0: i160 := coinbase() Operands None. Result and purity Result Purity i160 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » coinbase","id":"150","title":"coinbase"},"151":{"body":"( Expression::Timestamp) Description Block timestamp, as a Unix epoch second. Syntax timestamp() Example let v0: i64 := timestamp() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » timestamp","id":"151","title":"timestamp"},"152":{"body":"( Expression::Number) Description Current block number. Syntax number() Example let v0: i64 := number() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » number","id":"152","title":"number"},"153":{"body":"( Expression::Difficulty) Description Pre-merge block difficulty. On post-merge chains this is the block’s prevrandao value. Syntax difficulty() Example let v0 := difficulty() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » difficulty","id":"153","title":"difficulty"},"154":{"body":"( Expression::GasLimit) Description Block gas limit. Syntax gaslimit() Example let v0: i64 := gaslimit() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gaslimit","id":"154","title":"gaslimit"},"155":{"body":"( Expression::BaseFee) Description Current block’s EIP-1559 base fee per gas. Syntax basefee() Example let v0 := basefee() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » basefee","id":"155","title":"basefee"},"156":{"body":"( Expression::BlobBaseFee) Description Current block’s EIP-4844 blob base fee per gas. Syntax blobbasefee() Example let v0 := blobbasefee() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blobbasefee","id":"156","title":"blobbasefee"},"157":{"body":"( Expression::BlobHash) Description Versioned hash of the blob at the given index in the current transaction’s blob list. Syntax blobhash($index[: ]) Example let v1 := blobhash(v0) Operands Name Type Notes index i256 Blob index; forward analysis widens to at least i64. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blobhash","id":"157","title":"blobhash"},"158":{"body":"( Expression::BlockHash) Description Hash of the block with the given number. Per EVM, valid only for the most recent 256 blocks; outside that range the result is 0. Syntax blockhash($number[: ]) Example let v1 := blockhash(v0) Operands Name Type Notes number i256 Block number; forward analysis widens to i256. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » blockhash","id":"158","title":"blockhash"},"159":{"body":"( Expression::SelfBalance) Description Balance (in wei) of the contract executing the current call frame. Cheaper than balance(address()). Syntax selfbalance() Example let v0 := selfbalance() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » selfbalance","id":"159","title":"selfbalance"},"16":{"body":"--solc Specify the path to the solc executable. By default, the one in ${PATH} is used.","breadcrumbs":"resolc user guide » Command Line Interface » solc","id":"16","title":"solc"},"160":{"body":"( Expression::GasPrice) Description Effective gas price of the current transaction. Syntax gasprice() Example let v0 := gasprice() Operands None. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » gasprice","id":"160","title":"gasprice"},"161":{"body":"( Expression::CallDataLoad) Description Read 32 bytes from the current call’s calldata at the given offset. Reads past the end of calldata return zero bytes. Syntax calldataload($offset[: ]) Example let v1 := calldataload(v0) Operands Name Type Notes offset i256 Byte offset into calldata. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldataload","id":"161","title":"calldataload"},"162":{"body":"( Expression::CallDataSize) Description Length of the current call’s calldata, in bytes. Syntax calldatasize() Example let v0: i64 := calldatasize() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldatasize","id":"162","title":"calldatasize"},"163":{"body":"( Expression::ReturnDataSize) Description Length of the most recently returned data buffer from a sub-call, in bytes. Modeled as pure per IR but reflects the last ExternalCall / Create result; consumers must respect that ordering. Syntax returndatasize() Example let v0: i64 := returndatasize() Operands None. Result and purity Result Purity i64 Pure (per IR; see Description) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » returndatasize","id":"163","title":"returndatasize"},"164":{"body":"( Expression::CodeSize) Description Size of the currently executing code, in bytes. Syntax codesize() Example let v0: i64 := codesize() Operands None. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » codesize","id":"164","title":"codesize"},"165":{"body":"( Expression::ExtCodeSize) Description Size of the code deployed at the given address, in bytes. Returns 0 for accounts with no deployed code. Syntax extcodesize($address[: ]) Example let v1: i64 := extcodesize(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i64 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodesize","id":"165","title":"extcodesize"},"166":{"body":"( Expression::ExtCodeHash) Description Keccak-256 hash of the code deployed at the given address. Returns 0 for non-existent accounts. Syntax extcodehash($address[: ]) Example let v1 := extcodehash(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodehash","id":"166","title":"extcodehash"},"167":{"body":"( Expression::Balance) Description Balance (in wei) of the given account address. Use selfbalance for the contract executing the current call frame (cheaper). Syntax balance($address[: ]) Example let v1 := balance(v0: i160) Operands Name Type Notes address i256 Account address; forward analysis widens to at least i160. Result and purity Result Purity i256 Pure Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » balance","id":"167","title":"balance"},"168":{"body":"( Expression::MLoad) Description Read a 32-byte word from emulated EVM linear memory at offset. The word is read big-endian per EVM semantics. Pure per IR, but reads after writes return the new value; the memory passes track read/write dependencies separately. Syntax mload($offset[: ]) [/* */] Example let v1 := mload(v0: i64)\\nlet v2: i32 := mload(v3: i64) /* free_ptr */ Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. Result and purity Result Purity i32 when region is FreePointerSlot; i256 otherwise Pure (per IR; see Description) Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Same tagging rules as mstore. The region also determines the result width: a load from FreePointerSlot produces an i32 since the FMP fits in a pointer-sized word.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mload","id":"168","title":"mload"},"169":{"body":"( Expression::SLoad) Description Read a 32-byte word from persistent contract storage at the given key. Pure per IR; reads after writes to the same slot return the new value. Syntax sload($key[: ]) [/* slot: 0x */] Example let v1 := sload(v0)\\nlet v2 := sload(v3) /* slot: 0x0 */ Operands Name Type Notes key i256 Storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations Source field Printed as static_slot: Option /* slot: 0x */ when set; suppressed otherwise Same tagging rules as sstore. The printer renders the annotation whenever the field is Some and the deduplicator’s canonicalizer partitions signatures by slot; no pass currently writes Some(...), however, so in present-day dumps the annotation is dormant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sload","id":"169","title":"sload"},"17":{"body":"--debug-output-dir Dump all intermediary compiler artifacts to files in the specified directory. This includes the Yul IR, optimized and unoptimized LLVM IR, the ELF object and the PVM assembly. When the newyork pipeline is active, the newyork IR is additionally dumped (the final IR, a pre-late-pass snapshot, and heap and memory optimization data). Useful for debugging and development purposes.","breadcrumbs":"resolc user guide » Command Line Interface » Debug artifacts","id":"17","title":"Debug artifacts"},"170":{"body":"( Expression::TLoad) Description Read a 32-byte word from transient storage at the given key. Transient storage is wiped at the end of the transaction; pair with tstore. Syntax tload($key[: ]) Example let v1 := tload(v0) Operands Name Type Notes key i256 Transient storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations None. The IR does not track a static slot for tload.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » tload","id":"170","title":"tload"},"171":{"body":"( Expression::MappingSLoad) Description Compound load for a Solidity mapping element. Equivalent to mstore(0, key); mstore(32, slot); sload(keccak256(0, 64)) but emitted as a single outlined call after the mapping_access_outlining pass recognizes the pattern (it fuses a keccak256_pair — itself produced by mem_opt’s keccak fusion — followed by an sload whose key has a single consumer). Only valid when the intermediate hash is used exclusively by this load. Syntax mapping_sload($key[: ], $slot[: ]) Example let v2 := mapping_sload(v0: i160, v1) Operands Name Type Notes key i256 Mapping key; often narrowed to i160 for address keys. slot i256 The mapping’s declared storage slot. Result and purity Result Purity i256 Pure (per IR; see Description) Annotations None. The fused statement’s effective storage slot is the keccak hash of the key and the declared slot, which is never a compile-time constant; no static_slot hint is surfaced.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mapping_sload","id":"171","title":"mapping_sload"},"172":{"body":"( Expression::DataOffset) Description Offset of a named data segment within the deployed code. The identifier is a string carried in the IR’s id: String field; the linker resolves it to a concrete offset. Syntax dataoffset(\\"\\") Example let v0 := dataoffset(\\"MyContract_deployed\\") Operands None — the identifier is a quoted string literal in the syntax position, not an operand. Result and purity Result Purity i256 Pure Annotations Source field Printed as id: String The quoted identifier in the syntax position (not a comment annotation; it is the expression itself).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » dataoffset","id":"172","title":"dataoffset"},"173":{"body":"( Expression::DataSize) Description Size of a named data segment within the deployed code, in bytes. The identifier is resolved by the linker. Syntax datasize(\\"\\") Example let v0: i64 := datasize(\\"MyContract_deployed\\") Operands None — the identifier is a quoted string literal in the syntax position, not an operand. Result and purity Result Purity i64 Pure Annotations Source field Printed as id: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » datasize","id":"173","title":"datasize"},"174":{"body":"( Expression::LoadImmutable) Description Read the value of a named immutable variable. Immutables are written once during contract construction by SetImmutable and read afterwards via this expression. Syntax loadimmutable(\\"\\") Example let v0 := loadimmutable(\\"MyContract.owner\\") Operands None — the key is a quoted string literal in the syntax position. Result and purity Result Purity i256 Pure Annotations Source field Printed as key: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » loadimmutable","id":"174","title":"loadimmutable"},"175":{"body":"( Expression::LinkerSymbol) Description Address of an external library, resolved by the linker. The path encodes the library’s source location and identifier. Syntax linkersymbol(\\"\\") Example let v0: i160 := linkersymbol(\\"contracts/Library.sol:L\\") Operands None — the path is a quoted string literal in the syntax position. Result and purity Result Purity i160 Pure Annotations Source field Printed as path: String The quoted path in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » linkersymbol","id":"175","title":"linkersymbol"},"176":{"body":"( Expression::Call; the printer emits func_ when no function name is registered) Description Internal function call. Invokes a user-defined function declared earlier in the same object; the mnemonic is the function’s Yul-level name, or func_ if the printer has no name registered for the FunctionId. Distinct from call and the other EVM call-opcode statements, which cross the contract boundary. Syntax ([$argument_0[: ], $argument_1[: ], …]) Example let v3 := abi_decode_uint256(v0, v1, v2)\\nlet v4, v5 := returns_two(v0) // multi-return via let multi-binding Operands Name Type Notes arguments Vec Zero or more argument values, in declaration order; each operand may carry a : suffix. Result and purity Result Purity One or more values, widths taken from the callee’s declared return types (or the inferred return widths, narrowed via the interprocedural pass). Falls back to i256 when the callee’s returns are unknown to type inference. Effectful — the simplifier treats every call as side-effectful regardless of callee body, so unused call bindings are not DCE’d. The transitive purity of the callee is not tracked at the IR level. Annotations Source field Printed as function: FunctionId The callee’s name in the syntax position (or func_ if the printer has no name registered).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » ","id":"176","title":""},"177":{"body":"The operations in this section all modify external state: emulated EVM linear memory, persistent storage, or transient storage. They are statements (not expressions) and they are never pure. Simplification and deduplication never reorder them with respect to each other or with respect to reverts; the memory passes treat them as the side-effect boundary for their analyses.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Memory and storage writes","id":"177","title":"Memory and storage writes"},"178":{"body":"( Statement::MStore) Description Write a 32-byte word to emulated EVM linear memory at offset. The word is stored big-endian, matching EVM semantics; the codegen handles the byte swap on PolkaVM’s little-endian RISC-V target. Syntax mstore($offset[: ], $value[: ]) [/* */] Example mstore(v0, v1) // Unknown region; no annotation printed\\nmstore(v2, v3) /* scratch */ // offset proven to land in 0x00..0x3f\\nmstore(v4, v5) /* free_ptr */ // offset is exactly 0x40 Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. value i256 The 32-byte word to store. Narrower values are zero-extended at codegen time. Result and purity Result Purity None Effectful Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Assigned at translation time from the constant offset (if any); consumed by mem_opt, FMP propagation, and byte-swap mode selection.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mstore","id":"178","title":"mstore"},"179":{"body":"( Statement::MStore8) Description Write a single byte to emulated EVM linear memory at offset. The low 8 bits of value are stored; the upper bits are ignored. The operation is otherwise identical to mstore: same operand shape, same region tag, same side-effect classification. Syntax mstore8($offset[: ], $value[: ]) [/* */] Example mstore8(v0, v1: i8) Operands Name Type Notes offset i256 Byte offset into linear memory; forward analysis widens to at least i64. value i256 Only the low 8 bits are stored. Often narrowed to i8 by type inference. Result and purity Result Purity None Effectful Annotations Source field Printed as region: MemoryRegion /* scratch */ · /* free_ptr */ · /* dynamic */ ( Unknown is suppressed) Same tagging rules as mstore. Most mstore8s carry an Unknown region in practice because single-byte writes typically target offsets the translator cannot prove constant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mstore8","id":"179","title":"mstore8"},"18":{"body":"-g Generate source based debug information in the output code file. Useful for debugging and development purposes and disabled by default.","breadcrumbs":"resolc user guide » Command Line Interface » Debug info","id":"18","title":"Debug info"},"180":{"body":"( Statement::MCopy) Description Copy length bytes from src to dest within emulated EVM linear memory. The Yul builtin mcopy maps directly onto this statement; unlike mstore, it does not carry a region tag because the source and destination ranges may straddle multiple regions. Syntax mcopy($dest[: ], $src[: ], $length[: ]) Example mcopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. src i256 Source byte offset in linear memory. length i256 Number of bytes to copy. Overlapping ranges follow EVM-defined memmove semantics. Result and purity Result Purity None Effectful Annotations None. mcopy carries no region tag because the source and destination ranges may straddle multiple regions, and no static-slot hint because the copy is not storage-bound.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mcopy","id":"180","title":"mcopy"},"181":{"body":"( Statement::SStore) Description Write a 32-byte word to persistent contract storage at key. The operation is the durable counterpart of mstore: the value survives across transactions and is observable to subsequent calls to the contract. Syntax sstore($key[: ], $value[: ]) [/* slot: 0x */] Example sstore(v0, v1)\\nsstore(v2, v3) /* slot: 0x0 */ Operands Name Type Notes key i256 Storage slot. May be a constant slot, a keccak-derived slot for mappings or dynamic arrays, or an arbitrary expression. value i256 The 256-bit word to store. Result and purity Result Purity None Effectful Annotations Source field Printed as static_slot: Option /* slot: 0x */ when set; suppressed otherwise The printer renders the annotation whenever the field is Some, and the deduplicator’s canonicalizer and mapping-fusion analyses consume it as part of the signature. No pass currently writes Some(...), so the annotation is dormant in present-day dumps; when absent, alias and dedup analyses fall back to the conservative “may alias any slot” assumption.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » sstore","id":"181","title":"sstore"},"182":{"body":"( Statement::TStore) Description Write a 32-byte word to transient storage at key. Transient storage is wiped at the end of the transaction, so tstore is the right primitive for per-transaction bookkeeping (reentrancy guards, cached results) without the gas cost of sstore on EVM. On PolkaVM the transient backing store is provided by pallet-revive. Syntax tstore($key[: ], $value[: ]) Example tstore(v0, v1) Operands Name Type Notes key i256 Transient storage slot. value i256 The 256-bit word to store. Result and purity Result Purity None Effectful Annotations None. Unlike sstore, the IR does not track a static slot for tstore: transient storage’s short-lived lifetime makes the slot-aware optimizations less valuable, and the translator does not produce the annotation.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » tstore","id":"182","title":"tstore"},"183":{"body":"( Statement::MappingSStore) Description Compound store for a Solidity mapping element. Equivalent to mstore(0, key); mstore(32, slot); sstore(keccak256(0, 64), value) but emitted as a single outlined statement after the mapping_access_outlining pass recognizes the pattern (it fuses a keccak256_pair followed by an sstore whose key has a single consumer). Only valid when the intermediate hash is not observed by any other statement. Syntax mapping_sstore($key[: ], $slot[: ], $value[: ]) Example mapping_sstore(v0, v1, v2) Operands Name Type Notes key i256 Mapping key. The outlining pass force-widens it to i256, so it always prints at full width, even for address keys. slot i256 The mapping’s declared storage slot. Typically a small constant. value i256 The value to store at the computed storage location. Result and purity Result Purity None Effectful Annotations None. mapping_sstore deliberately drops the static_slot annotation that the original sstore may have carried, because the fused statement’s effective slot is the keccak hash of the key and the declared slot, which is never a compile-time constant.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » mapping_sstore","id":"183","title":"mapping_sstore"},"184":{"body":"Multi-byte memory copies from the EVM-accessible byte sources (code, external code, returndata, embedded data, and calldata) into emulated EVM linear memory. They all take the same shape: a destination memory offset, a source offset, and a length. They are effectful and act as opaque barriers to the memory passes.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Bulk copies","id":"184","title":"Bulk copies"},"185":{"body":"( Statement::CodeCopy) Description Copy length bytes from the currently executing code at offset into emulated EVM linear memory at dest. Reads past the end of code yield zero bytes. Syntax codecopy($dest[: ], $offset[: ], $length[: ]) Example codecopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the executing code. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » codecopy","id":"185","title":"codecopy"},"186":{"body":"( Statement::ExtCodeCopy) Description Copy length bytes from the code at address starting at offset into emulated EVM linear memory at dest. Reads beyond the code yield zero bytes; non-existent accounts yield all zeros. Syntax extcodecopy($address[: ], $dest[: ], $offset[: ], $length[: ]) Example extcodecopy(v0: i160, v1, v2, v3) Operands Name Type Notes address i256 Account whose code to read; forward analysis widens to at least i160. dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the external code. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » extcodecopy","id":"186","title":"extcodecopy"},"187":{"body":"( Statement::ReturnDataCopy) Description Copy length bytes from the most recent sub-call’s return data starting at offset into emulated EVM linear memory at dest. Per EVM, reads past the return data’s end revert; the memory passes treat this as a potential trap site. Syntax returndatacopy($dest[: ], $offset[: ], $length[: ]) Example returndatacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the return-data buffer. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful (may revert on out-of-range reads, per EVM) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » returndatacopy","id":"187","title":"returndatacopy"},"188":{"body":"( Statement::DataCopy) Description Copy length bytes from an embedded data segment starting at offset into emulated EVM linear memory at dest. The source segment is resolved by the linker, typically used to pull constants compiled into the bytecode into runtime memory. Syntax datacopy($dest[: ], $offset[: ], $length[: ]) Example datacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in the data segment. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » datacopy","id":"188","title":"datacopy"},"189":{"body":"( Statement::CallDataCopy) Description Copy length bytes from the current call’s calldata starting at offset into emulated EVM linear memory at dest. Reads past the end of calldata yield zero bytes. Syntax calldatacopy($dest[: ], $offset[: ], $length[: ]) Example calldatacopy(v0, v1, v2) Operands Name Type Notes dest i256 Destination byte offset in linear memory. offset i256 Source byte offset in calldata. length i256 Number of bytes to copy. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » calldatacopy","id":"189","title":"calldatacopy"},"19":{"body":"--link [--libraries ] In Solidity, 3 things can happen with libraries: They are not externally callable and thus can be inlined. The solc Solidity optimizer inlines those (usually the case). Note: resolc always activates the solc Solidity optimizer. If the solc Solidity optimizer is disabled or for some reason fails to inline them (both rare), they are not inlined and require linking. They are externally callable but still linked at compile time. This is the case if at compile time the library address is known (i.e. --libraries supplied in CLI or the corresponding setting in STD JSON input). They are linked at deploy time. This happens when the compiler does not know the library address (i.e. --libraries flag is missing or the provided libraries are incomplete, same for STD JSON input). This case is rare because it’s discourage and should never be used by production dApps. In cases 1.2 and 3: Some of the produced code blobs will be in the “unlinked” raw ELF object format and not yet deployable. To make them deployable, they need to be “linked” (done using the resolc --link linker mode explained below). The compiler emitted DELEGATECALL instructions to call non-inlined (unlinked) libraries. The contract deployer must make sure to deploy any libraries prior to contract deployment. Warning Using deploy time linking is officially discouraged. Mainly due to bytecode hashes changing after the fact. We decided to support it in resolc regardless, due to popular request. Similar to how it works in solc, --libraries may be used to provide libraries during linking mode. Unlike with solc, where linking implies a simple string substitution mechanism, resolc needs to resolve actual missing ELF symbols. This is due to how factory dependencies work in PVM. As a consequence, it isn’t sufficient to just provide the unlinked blobs to the linker. Instead, they must be provided in the exact same directory structure the Solidity source code was found during compile time. Example: The contract src/foo/bar.sol:Bar is involved in deploy time linking. It may be a factory dependency. The contract blob needs to be provided inside a relative src/foo/ directory to --link. Otherwise symbol resolution may fail. Note Tooling is supposed to take care of this. In the future, we may append explicit linkage data to simplify the deploy time linking feature.","breadcrumbs":"resolc user guide » Command Line Interface » Deploy time linking","id":"19","title":"Deploy time linking"},"190":{"body":"The statements that bind SSA values, hold loose expressions evaluated for their side effects, and write to immutable storage. Every pure expression in this reference’s earlier sections appears on the right-hand side of one of these statements (almost always let).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Bindings and wrappers","id":"190","title":"Bindings and wrappers"},"191":{"body":"( Statement::Let) Description SSA binding: evaluate an expression and bind its result(s) to a list of fresh value ids. The let statement is the only mechanism by which pure expressions enter the value namespace; every v in a dump was produced by a let (or by a value-yielding control-flow statement or by a parameter at function entry). Syntax let $binding_0[, $binding_1, …] := $expression Example let v3 := add(v0, v1)\\nlet v4, v5 := if v2 [v0, v1] { … } else { … } // multi-binding from a value-yielding If Operands Name Type Notes bindings Vec One or more fresh SSA ids to bind. Most expressions produce one value; control-flow statements may produce several. value Expression The right-hand side; see any of the Pure expression entries. Result and purity Result Purity None directly — the bound ids carry the expression’s result(s) Effectful (binding establishment); the right-hand side’s purity is independent Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » let","id":"191","title":"let"},"192":{"body":"( Statement::Expression) Description Wraps an expression evaluated for its observable consequences but whose value is not bound. Typically a zero-return (void) user-defined function call ( Expression::Call) evaluated for its side effects, or the discarded void result of a Yul builtin used as a statement (a value-producing expression is bound by a let instead). EVM external calls ( call, delegatecall, etc.) and contract creation ( create, create2) translate to dedicated Statement::ExternalCall and Statement::Create variants, not through this wrapper. Syntax $expression Example update_balance(v0) // void function called for its side effects Operands Name Type Notes expression Expression Any expression; result is discarded. Result and purity Result Purity None Effectful (per its statement position) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Expression statement","id":"192","title":"Expression statement"},"193":{"body":"( Statement::SetImmutable) Description Write an immutable variable during contract construction. Immutables are written once in the constructor and read later via loadimmutable. The key is a string identifier resolved by the linker. Syntax setimmutable(\\"\\", $value[: ]) Example setimmutable(\\"MyContract.owner\\", v0) Operands Name Type Notes value i256 The value to store; the key is a quoted string literal in the syntax position. Result and purity Result Purity None Effectful Annotations Source field Printed as key: String The quoted identifier in the syntax position.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » setimmutable","id":"193","title":"setimmutable"},"194":{"body":"The IR’s control flow is structured: if, switch, and for are statements with explicit nested regions, each carrying input values and yielding output values. The jump-like statements ( break, continue, leave) are scoped to their nearest enclosing construct. Nested blocks create lexical scope without otherwise changing control flow.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Structured control flow","id":"194","title":"Structured control flow"},"195":{"body":"( Statement::If) Description Conditional execution with optional value yields. The then region runs when condition is non-zero; the else region runs otherwise. If outputs is non-empty, both regions must yield the same number of values and the statement is bound by a let. Syntax if $condition[: ] [[$input_0, $input_1, …]] { … } [else { … }] Example if v0: i1 { sstore(v1, v2)\\n} let v5, v6 := if v3: i1 [v1, v2] { let v7: i64 := 0x1 // add widens its operands to the i64 register width let v8 := add(v2, v7: i64) yield v1, v8\\n} else { yield v1, v2\\n} Operands Name Type Notes condition i256 Branch selector; non-zero takes the then region. Often narrowed to i1. inputs Vec Values threaded into both regions, printed in square brackets after the condition. (regions) — The then_region is mandatory; the else_region is optional and, when absent, implicitly yields the inputs unchanged. Result and purity Result Purity None for the statement form; for the value-yielding form, one value per outputs binding, types taken from the yielded values Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » if","id":"195","title":"if"},"196":{"body":"( Statement::Switch) Description Multi-way dispatch on a scrutinee value. Each case matches a specific constant and runs its region; an optional default region catches non-matching values. Like if, switch may yield values via outputs and accept thread-through values via inputs. Syntax switch $scrutinee[: ] [[$input_0, …]]\\ncase 0x { …\\n}\\n[case 0x { …\\n} …]\\n[default { …\\n}] Example switch v0\\ncase 0x0 { sstore(v1, v2)\\n}\\ncase 0x1 { sstore(v1, v3)\\n}\\ndefault { invalid()\\n} Operands Name Type Notes scrutinee i256 The value to compare against each case. inputs Vec Values threaded into every case and default region. cases Vec Each case carries a constant value: BigUint and a region. (default) — Optional fall-through region. Result and purity Result Purity None for the statement form; one value per outputs binding for the value-yielding form Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » switch","id":"196","title":"switch"},"197":{"body":"( Statement::For) Description Structured loop with explicit loop-carried variables. Each iteration evaluates condition_statements followed by condition; if the condition is non-zero, the body region runs, then the post region runs, and the loop iterates. Loop-carried variables are passed as SSA values through each region. break exits the loop and continue jumps to the post region. Syntax for { $variable_0 := $initial_0[, …] } [// condition statements: …] condition: $condition post [($post_input_variable_0[, …])] { … } body { … body … } Example let v0: i1 := 0x0\\nlet v6 := for { v1 := v0: i1 } // condition statements: let v2: i8 := 0xa condition: lt(v1, v2: i8) post (v3) { let v4: i64 := 0x1 let v5 := add(v3, v4: i64) yield v5 } body { sstore(v1, v1) 0x0: void yield v1 } Operands Name Type Notes initial_values Vec Starting values for the loop-carried variables. loop_variables Vec SSA ids visible inside condition, body, and post. condition_statements Vec Statements evaluated each iteration before the condition expression; emitted into the loop header block. Printed only when non-empty, behind a // condition statements: comment. condition Expression Re-evaluated each iteration; non-zero continues, zero exits. body Region Loop body; yields current loop-carried values. post_input_variables Vec Input SSA ids for the post region (one per loop-carried variable); receive the body’s yielded values merged with continue-site values via phi nodes in the LLVM codegen. post Region Runs after each body iteration (and after continue); yields updated loop-carried values. outputs Vec Final loop-carried values after exit. Result and purity Result Purity None for the statement form; one value per outputs binding for the value-yielding form Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » for","id":"197","title":"for"},"198":{"body":"( Statement::Break) Description Exit the innermost enclosing for loop. Carries the current values of loop-carried variables at the break point; these become the loop’s outputs. Syntax break Example if v0 { break [v1, v2] } Operands The loop-carried values: Vec print in brackets when non-empty (e.g. break [v1, v2]). Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » break","id":"198","title":"break"},"199":{"body":"( Statement::Continue) Description Skip to the post region of the innermost enclosing for loop. Like break, carries the current values of loop-carried variables internally. Syntax continue Example if v0 { continue [v1, v2] } Operands The loop-carried values print in brackets when non-empty (e.g. continue [v1, v2]). Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » continue","id":"199","title":"continue"},"2":{"body":"Head to contracts.polkadot.io for more general information about contracts on Polkadot.","breadcrumbs":"Welcome » Other Polkadot contracts resources","id":"2","title":"Other Polkadot contracts resources"},"20":{"body":"The resolc compiler driver is published as an NPM package under @parity/resolc. It’s usable from Node.js code or directly from the command line: npx @parity/resolc@latest --bin crates/integration/contracts/flipper.sol -o /tmp/out Note While the npm package makes a nice portable option, it doesn’t expose all options.","breadcrumbs":"resolc user guide » JS NPM package » JS NPM package","id":"20","title":"JS NPM package"},"200":{"body":"( Statement::Leave) Description Exit the current function, returning the listed values as the function’s return values. The Yul-level leave keyword translates directly to this statement; the inlining pass eliminates intra-function leaves where possible via the exit-flag transformation. Syntax leave [[$value_0[: ], $value_1[: ], …]] Example leave [v0, v1] // returns v0 and v1 from the function\\nleave // returns nothing (void function) Operands Name Type Notes return_values Vec Empty for void functions; otherwise one entry per declared return. Result and purity Result Purity None Effectful (control flow) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » leave","id":"200","title":"leave"},"201":{"body":"( Statement::Block) Description A lexical scope without conditional or iterative behavior. The body is a region; control falls through after the region’s statements complete. Used to bound the visibility of inner bindings. Syntax { …\\n} Example { let v0 := add(v1, v2) sstore(v3, v0)\\n} // v0 is no longer in scope here Operands None — the body is a region, not an operand. Result and purity Result Purity None Effectful (per the body’s contents) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Nested block","id":"201","title":"Nested block"},"202":{"body":"Statements that cross the contract boundary: external calls, contract creation, and event log emission. All produce or rely on external state and act as barriers to memory and storage analyses.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » External interaction","id":"202","title":"External interaction"},"203":{"body":"( Statement::ExternalCall with CallKind::Call) Description Standard external call that may transfer value. Reads args_length bytes from emulated EVM linear memory at args_offset as calldata, executes the target, and writes up to ret_length bytes of return data into linear memory at ret_offset. The boolean result indicates success. Syntax let $result := call($gas[: ], $address[: ], $value[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v8 := call(v0: i64, v1: i160, v2, v3: i64, v4: i64, v5: i64, v6: i64) Operands Name Type Notes gas i256 Gas to forward to the target; forward analysis widens to at least i64. address i256 Callee address; forward analysis widens to at least i160. value i256 Wei to transfer with the call. args_offset i256 Calldata source offset in linear memory; forward analysis widens to at least i64. args_length i256 Calldata length in bytes; forward analysis widens to at least i64. ret_offset i256 Return-data destination offset in linear memory; forward analysis widens to at least i64. ret_length i256 Maximum return-data length; forward analysis widens to at least i64. Result and purity Result Purity i256 (success flag: 1 on success, 0 on revert/error; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » call","id":"203","title":"call"},"204":{"body":"( Statement::ExternalCall with CallKind::CallCode) Description Deprecated EVM opcode that executes the callee’s code in the caller’s context but with the callee’s storage. Not supported by the newyork backend (codegen rejects it); use delegatecall instead. Syntax let $result := callcode($gas[: ], $address[: ], $value[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v8 := callcode(v0: i64, v1: i160, v2, v3: i64, v4: i64, v5: i64, v6: i64) Operands Same shape as call. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » callcode","id":"204","title":"callcode"},"205":{"body":"( Statement::ExternalCall with CallKind::DelegateCall) Description Execute the callee’s code in the caller’s context: same storage, same sender, same call value. The standard mechanism for library calls and proxy patterns. No value operand (the caller’s call value is inherited). Syntax let $result := delegatecall($gas[: ], $address[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v7 := delegatecall(v0: i64, v1: i160, v2: i64, v3: i64, v4: i64, v5: i64) Operands Same shape as call minus the value operand. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » delegatecall","id":"205","title":"delegatecall"},"206":{"body":"( Statement::ExternalCall with CallKind::StaticCall) Description Read-only external call. Any state modification in the callee (including nested calls) causes the call to revert. No value operand. Syntax let $result := staticcall($gas[: ], $address[: ], $args_offset[: ], $args_length[: ], $ret_offset[: ], $ret_length[: ]) Example let v7 := staticcall(v0: i64, v1: i160, v2: i64, v3: i64, v4: i64, v5: i64) Operands Same shape as call minus the value operand. Result and purity Result Purity i256 (success flag; narrowable to i1) Effectful (no state writes, but still an external boundary and may revert) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » staticcall","id":"206","title":"staticcall"},"207":{"body":"( Statement::Create with CreateKind::Create) Description Deploy a new contract with the given init-code bytes, transferring value wei from the caller. The new contract’s address is derived from the caller’s address and nonce; on failure the result is 0. Syntax let $result := create($value[: ], $offset[: ], $length[: ]) Example let v4 := create(v0, v1: i64, v2: i64) Operands Name Type Notes value i256 Wei to transfer to the new contract. offset i256 Linear-memory offset of the init code; forward analysis widens to at least i64. length i256 Length of the init code in bytes; forward analysis widens to at least i64. Result and purity Result Purity i256 (created address; narrowable to i160 on success, 0 on failure) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » create","id":"207","title":"create"},"208":{"body":"( Statement::Create with CreateKind::Create2) Description Deploy a new contract with a deterministic address derived from the caller’s address, the salt, and the init-code hash. Same operand shape as create plus an additional salt. Syntax let $result := create2($value[: ], $offset[: ], $length[: ], $salt[: ]) Example let v5 := create2(v0, v1: i64, v2: i64, v3) Operands Same as create plus salt: i256. Result and purity Result Purity i256 (created address; narrowable to i160 on success, 0 on failure) Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » create2","id":"208","title":"create2"},"209":{"body":"( Statement::Log) Description Emit an event log entry. The mnemonic suffix is the number of indexed topics ( 0 through 4), determined by the length of the IR’s topics field. The data portion is read from length bytes of emulated EVM linear memory at offset. Syntax log($offset[: ], $length[: ][, $topic_0[: ], …]) Example log0(v0: i64, v1: i64) // no topics\\nlog2(v0: i64, v1: i64, v2, v3) // two topics Operands Name Type Notes offset i256 Data source offset in linear memory; forward analysis widens to at least i64. length i256 Data length in bytes; forward analysis widens to at least i64. topics Vec Zero to four indexed topic values; the length determines the mnemonic suffix. Result and purity Result Purity None Effectful Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » log","id":"209","title":"log"},"21":{"body":"resolc achieved successful integration with a variety of third party developer tools.","breadcrumbs":"resolc user guide » Tooling integration » Tooling integration","id":"21","title":"Tooling integration"},"210":{"body":"Statements that end the current call frame. Plain forms ( return, revert, stop), unconditional traps ( invalid, selfdestruct), and outlined revert variants ( panic_revert, error_string_revert, custom_error_revert) that encode common Solidity error patterns into single nodes that can be deduplicated across call sites.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » Termination","id":"210","title":"Termination"},"211":{"body":"( Statement::Return) Description End the current call frame successfully, returning length bytes from emulated EVM linear memory at offset as the return data. Syntax return($offset[: ], $length[: ]) Example return(v0: i64, v1: i64) Operands Name Type Notes offset i256 Return-data source offset; forward analysis widens to at least i64. length i256 Return-data length; forward analysis widens to at least i64. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » return","id":"211","title":"return"},"212":{"body":"( Statement::Revert) Description End the current call frame with a revert, undoing all state changes made during the call, and returning length bytes of revert data from emulated EVM linear memory at offset. Syntax revert($offset[: ], $length[: ]) Example revert(v0: i64, v1: i64) Operands Name Type Notes offset i256 Revert-data source offset; forward analysis widens to at least i64. length i256 Revert-data length; forward analysis widens to at least i64. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » revert","id":"212","title":"revert"},"213":{"body":"( Statement::Stop) Description End the current call frame successfully with empty return data. Syntax stop() Example stop() Operands None. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » stop","id":"213","title":"stop"},"214":{"body":"( Statement::Invalid) Description Unconditional invalid-opcode trap. Consumes all remaining gas and reverts. Used for unreachable branches and assertion failures. Syntax invalid() Example invalid() Operands None. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » invalid","id":"214","title":"invalid"},"215":{"body":"( Statement::SelfDestruct) Description End the current call frame and transfer the contract’s remaining balance to address. Post-Cancun, the contract storage is not deleted (selfdestruct is effectively deprecated; the opcode still exists for legacy compatibility). Syntax selfdestruct($address[: ]) Example selfdestruct(v0: i160) Operands Name Type Notes address i256 Recipient of the contract’s balance; forward analysis widens to at least i160. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations None.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » selfdestruct","id":"215","title":"selfdestruct"},"216":{"body":"( Statement::PanicRevert) Description Outlined Solidity panic revert. Equivalent to writing the Panic(uint256) ABI encoding (selector 0x4e487b71 plus the panic code) into emulated EVM linear memory and reverting, but emitted as a single statement that lowers to one outlined helper call. Common panic codes: 0x01 assertion failure, 0x11 arithmetic overflow, 0x12 division by zero, 0x32 array-out-of-bounds, 0x41 memory overflow. Syntax panic_revert(0x) Example panic_revert(0x11) // arithmetic overflow Operands None — the panic code is stored as a u8 field on the IR, not an SSA operand. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as code: u8 The panic code in 0x form (two hex digits, zero-padded).","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » panic_revert","id":"216","title":"panic_revert"},"217":{"body":"( Statement::ErrorStringRevert) Description Outlined Solidity Error(string) revert. Equivalent to writing the Error selector ( 0x08c379a0), the string offset and length, and up to four 32-byte data words into emulated EVM linear memory and reverting. The string length and the data words are stored as compile-time fields; no SSA operands. Syntax error_string_revert(, _words) Example error_string_revert(12, 1_words) // 12-byte string in one 32-byte word Operands None — the string length and data are compile-time fields, not SSA operands. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as length: u8 The string length in bytes, in the first syntax position. data: Vec The number of 32-byte data words (1–4), printed as _words in the second syntax position. The actual data is stored separately and not shown in the printed form.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » error_string_revert","id":"217","title":"error_string_revert"},"218":{"body":"( Statement::CustomErrorRevert) Description Outlined Solidity custom-error revert. Encodes the error selector (left-shifted by 224 bits) and zero or more argument values into scratch memory and reverts. No FMP load is needed; the encoding uses the scratch region at offset 0. Syntax custom_error_revert(0x, [$arg_0, $arg_1, …]) Example custom_error_revert(0xa28c4c11, [v0, v1]) Operands Name Type Notes arguments Vec Zero or more argument values; the selector is a compile-time field. Result and purity Result Purity None — terminates the call frame Effectful (terminator) Annotations Source field Printed as selector: BigUint The 4-byte error selector in hex, in the first syntax position. The selector is stored left-shifted by 224 bits; the printer right-shifts it back and prints the bare 4-byte value.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » custom_error_revert","id":"218","title":"custom_error_revert"},"219":{"body":"The revive compiler targets PolkaVM (PVM) via pallet-revive on Polkadot.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » PVM and the pallet-revive runtime target","id":"219","title":"PVM and the pallet-revive runtime target"},"22":{"body":"Support for resolc is available in forks of the hardhat and foundry Solidity toolkits: The Parity Hardhat fork The Parity Foundry fork","breadcrumbs":"resolc user guide » Tooling integration » Solidity toolkits","id":"22","title":"Solidity toolkits"},"220":{"body":"The exact target CPU configuration can be found here. Note The PVM linker requires fully relocatable ELF objects.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Target CPU configuration","id":"220","title":"Target CPU configuration"},"221":{"body":"PVM is a RISC-V based VM designed to overcome the flaws of WebAssebmly (Wasm). Wasm was believed to be a more efficient successor to the rather slow EVM. However, Wasm is far from an ideal target for smart contracts as some of its design decisions are unfavorable for short-lived workloads. The main problem is on-chain Wasm bytecode compilation or interpretation overhead. Prior benchmarks consistently ignoring this overhead seeded the blockchain industry with flawed assumptions: Only when ignoring the startup overhead Wasm is much faster than the slow computing EVM. In practice however, gains are nullified entirely and Wasm loses completely even against very slow VMs like the EVM. Executing Wasm contracts is in fact so inefficient that typical contract workloads are orders of magnitude more expensive than the equivalent EVM variant. On the other hand, since RISC-V is similar to CPUs found in validator hardware (x86 and ARM), bytecode translation mostly boils down to a linear mapping from one instruction to another. The embedded ISA specification reduces the number of general purpose registers, in turn removing the need for expensive register allocation. This guarantees single-pass O(n) JIT compilation of contract bytecode. The close proximity of PVM bytecode with actual validator CPU bytecode effectively allows to move all expensive compilation workload off-chain. Benchmarks ( 1, 2) show that with the PVM JIT, sandboxed PVM code executes at around half the speed of native code, which falls into the same ballpark of the state-of-the-art wasmtime Wasm implementation (while EVM sits somewhere around 1/10 to less than 1/100 of native speed). However, the PVM JIT compiler only uses a fraction of the time wasmtime requires to compile the code. Note The PVM JIT isn’t available yet in pallet-revive. At the time of writing, the contract code is interpreted, which is orders of magnitude slower than the JIT.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Why PVM","id":"221","title":"Why PVM"},"222":{"body":"The revive compiler targets the pallet-revive runtime environment. pallet-revive exposes a syscall like interface for contract interactions with the host environment. This is provided by the revive-runtime-api library. After the initial launch on the Polkadot Asset Hub blockchain, the runtime API is considered stable and backwards compatible indefinitively.","breadcrumbs":"Developer Guide » PVM and the pallet-revive runtime target » Host environment: pallet-revive","id":"222","title":"Host environment: pallet-revive"},"223":{"body":"Contributors are encouraged to implement some appropriate unit and integration tests together with any bug fixes or new feature implementations. However, when it comes to testing the code generation logic, our testing strategy goes way beyond simple unit and integration tests. This chapter explains how the revive compiler implementation is tested for correctness and how we define correctness. Tip Running the integration tests require the evm tool from go-ethereum in your $PATH. Either install it using your package manager or to build it from source: git clone https://github.com/ethereum/go-ethereum/\\ncd go-ethereum\\nmake all\\nexport PATH=/path/to/go-ethereum/build/bin/:$PATH","breadcrumbs":"Developer Guide » Testing strategy » Testing strategy","id":"223","title":"Testing strategy"},"224":{"body":"As a Solidity compiler, we aim to preserve contract code semantics as close as possible to Solidity compiled to EVM with the solc reference implementation. As highlighted in the user guide, due to the underlying target difference, this isn’t always possible. However, wherever it is possible, we follow the philosophy of bug compatibility with the Ethereum contracts stack.","breadcrumbs":"Developer Guide » Testing strategy » Bug compatibility with Ethereum Solidity","id":"224","title":"Bug compatibility with Ethereum Solidity"},"225":{"body":"A high level of bug compatibility with Ethereum is ensured through differential testing with the Ethereum solc and EVM contracts stack. The revive-integration library is the central integration test utility, providing a set of Solidity integration test cases. Further, it implements differential tests against the reference implementation by combining the revive-runner sandbox, the go-ethereum EVM tool and the revive-differential. The revive-runner library provides a declarative test specification format. This vastly simplifies writing differential test cases and removes a lot of room for errors in test logic. Example: { \\"differential\\": true, \\"actions\\": [ { \\"Instantiate\\": { \\"code\\": { \\"Solidity\\": { \\"contract\\": \\"Bitwise\\" } } } }, { \\"Call\\": { \\"dest\\": { \\"Instantiated\\": 0 }, \\"data\\": \\"3fa4f245\\" } } ]\\n} Above example instantiates the Bitwise contract and calls it with some defined calldata. The revive-runner library implements a helper wrapper to execute test specs on the go-ethereum standalone evm tool. This allows the revive-runner to execute specs against the EVM and the pallet-revive runtime. Key to differential testing is setting \\"differential\\": true, resulting in the following: The Bitwise contract is compiled to EVM and PVM code. The runner executes the defined actions on the EVM and collects all state changes (storage, balance) and execution results. The runner executes each action on the PVM. Observed state changes after each step as well as the final execution result is asserted to match the EVM counterparts exactly. Note how we never defined any expected outcome manually. Instead, we simply observe and collect the data defining the “correct” outcome. Differential testing in combination with declarative test specifications proved to be simple, yet very effective, in ensuring expected Ethereum Solidity semantics on pallet-revive.","breadcrumbs":"Developer Guide » Testing strategy » Differential integration tests","id":"225","title":"Differential integration tests"},"226":{"body":"A lot of nuanced bugs caused by tiny implementation details inside the revive compiler and the pallet-revive runtime could be identified and eliminated early on thanks to the differential testing strategy. Thus, we decided to take this approach further and created a comprehensive test runner and a large suite of more complex test cases. The Revive Differential Tests follow the exact same strategy but implement a much more powerful test spec format, spec runner and reports. This allows differentially testing much more complex test cases (for example testing Uniswap pair creations and swaps), executed via transactions sent to actual blockchain nodes.","breadcrumbs":"Developer Guide » Testing strategy » The differential testing utility","id":"226","title":"The differential testing utility"},"227":{"body":"We cross-compile the resolc.js frontend executable to Wasm for running it in a Node.js or browser environment. The musl target is used to obtain statically linked ELF binaries for Linux.","breadcrumbs":"Developer Guide » Cross compilation » Cross compilation","id":"227","title":"Cross compilation"},"228":{"body":"The REVIVE_LLVM_TARGET_PREFIX environment variable is used to control the target environment LLVM dependency. This requires a compatible LLVM build, obtainable via the revive-llvm build script. Example: # Build the host LLVM dependency with PolkaVM target support\\nmake install-llvm\\nexport LLVM_SYS_221_PREFIX=${PWD}/target-llvm/gnu/target-final # Build the target LLVM dependency with PolkaVM target support\\nrevive-llvm emsdk\\nsource emsdk/emsdk_env.sh\\nrevive-llvm --target-env emscripten build --llvm-projects lld\\nexport REVIVE_LLVM_TARGET_PREFIX=${PWD}/target-llvm/emscripten/target-final # Build the resolc frontend executable\\nmake install-wasm\\nmake test-wasm","breadcrumbs":"Developer Guide » Cross compilation » Wasm via emscripten","id":"228","title":"Wasm via emscripten"},"229":{"body":"rust-musl-cross is a straightforward way to cross compile Rust to musl. The Dockerfile is an executable example of how to do that.","breadcrumbs":"Developer Guide » Cross compilation » musl libc","id":"229","title":"musl libc"},"23":{"body":"resolc is available on godbolt.org for the Solidity and Yul input languages. See also the announcement post on the forum.","breadcrumbs":"resolc user guide » Tooling integration » Compiler explorer","id":"23","title":"Compiler explorer"},"230":{"body":"","breadcrumbs":"FAQ » FAQ","id":"230","title":"FAQ"},"231":{"body":"We neither do nor don’t support any EVM version. We support Solidity versions, starting from solc version 0.8.0 onwards.","breadcrumbs":"FAQ » What EVM version do you support?","id":"231","title":"What EVM version do you support?"},"232":{"body":"Yes, almost all inline assembly features are supported ( see the differences in Yul translation chapter).","breadcrumbs":"FAQ » Is inline assembly supported","id":"232","title":"Is inline assembly supported"},"233":{"body":"See above, the same applies.","breadcrumbs":"FAQ » Do you support opcode XY?","id":"233","title":"Do you support opcode XY?"},"234":{"body":"We generally recommend to always use the latest supported version to profit from latest bugfixes, features and performance improvements. Find out about the latest supported version by running resolc --supported-solc-versions or checking here.","breadcrumbs":"FAQ » In what Solidity version should I write my dApp?","id":"234","title":"In what Solidity version should I write my dApp?"},"235":{"body":"The 24kb code size restriction only exist for the EVM. Our limit is currently around 1mb and may increase further in the future.","breadcrumbs":"FAQ » Tool XY says the contract size is larger than 24kb and will fail to deploy?","id":"235","title":"Tool XY says the contract size is larger than 24kb and will fail to deploy?"},"236":{"body":"No. resolc aims to work similarly to solc, but it’s not considered a drop-in replacement.","breadcrumbs":"FAQ » Is resolc a drop-in replacement for solc?","id":"236","title":"Is resolc a drop-in replacement for solc?"},"237":{"body":"The revive compiler speeds up Solidity contracts significantly. revive provides a decisive edge over other contract platforms. Notably, the compiler eliminates the need of rewriting Solidity dApps in Rust or even as single dApp parachains for scaling reasons. Retaining as high compatibility with Ethereum Solidity as possible keeps entry barriers low. We believe in Dr. Gavin Wood’s ĐApps: What Web 3.0 Looks Like manifesto and the ecosystem of the Solidity programming language. Our motivation lies in the realization that for a true web3 revolution, significant scaling efforts, like the ones provided by the PVM and this project, are necessary to unfold.","breadcrumbs":"Roadmap and Vision » Vision and Roadmap","id":"237","title":"Vision and Roadmap"},"238":{"body":"The first major release, resolc v1.0.0, emits functional PVM code from given Solidity sources. It relies on solc and LLVM for optimizations. The main priority of this release was delivering a mostly feature complete and safe Solidity v0.8.0 compiler. Focus for the second major release is on the custom optimization pipeline, which aims to significantly improve emitted code blob sizes. The below roadmap gives a rough overview of the project’s development timeline.","breadcrumbs":"Roadmap and Vision » Roadmap","id":"238","title":"Roadmap"},"24":{"body":"There is remix IDE fork with resolc support at remix.polkadot.io. Unfortunately this is no longer actively maintained (there might be bugs and outdated resolc versions).","breadcrumbs":"resolc user guide » Tooling integration » Remix IDE","id":"24","title":"Remix IDE"},"25":{"body":"The revive compiler is mostly compatible with the solc standard JSON interface. There are a few differences and additional (PVM related) input configurations:","breadcrumbs":"resolc user guide » Standard JSON interface » Standard JSON interface","id":"25","title":"Standard JSON interface"},"26":{"body":"Used to configure PVM specific compiler settings.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.polkavm object","id":"26","title":"The settings.polkavm object"},"27":{"body":"A boolean value allowing to enable debug information. Corresponds to resolc -g.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.polkavm.debugInformation","id":"27","title":"settings.polkavm.debugInformation"},"28":{"body":"A boolean value allowing to enable the experimental newyork IR pipeline for Yul lowering. Corresponds to resolc --newyork. Off by default. The output JSON includes which pipeline actually ran, via the top-level resolc_pipeline field ( \\"newyork\\" or \\"yul\\" for the standard Yul-to-LLVM pipeline).","breadcrumbs":"resolc user guide » Standard JSON interface » settings.polkavm.newyork","id":"28","title":"settings.polkavm.newyork"},"29":{"body":"Used to apply PVM specific memory configuration settings. settings.polkavm.memoryConfig.heapSize A numerical value allowing to configure the contract heap size. Corresponds to resolc --heap-size. settings.polkavm.memoryConfig.stackSize A numerical value allowing to configure the contract stack size. Corresponds to resolc --stack-size.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.polkavm.memoryConfig object","id":"29","title":"The settings.polkavm.memoryConfig object"},"3":{"body":"This mdBook documents the revive Solidity compiler project. The content is found under book/. Run make book to observe changes.","breadcrumbs":"Welcome » About","id":"3","title":"About"},"30":{"body":"The settings.optimizer object is augmented with support for PVM specific optimization settings.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.optimizer object","id":"30","title":"The settings.optimizer object"},"31":{"body":"A single char value to configure the LLVM optimizer settings. Corresponds to resolc -O.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.optimizer.mode","id":"31","title":"settings.optimizer.mode"},"32":{"body":"Allows to specify arbitrary command line arguments to LLVM initialization. Used mainly for development and debugging purposes.","breadcrumbs":"resolc user guide » Standard JSON interface » settings.llvmArguments","id":"32","title":"settings.llvmArguments"},"33":{"body":"Used to select desired outputs.","breadcrumbs":"resolc user guide » Standard JSON interface » The settings.outputSelection object","id":"33","title":"The settings.outputSelection object"},"34":{"body":"Resolc supports the “all” ( *) wildcard for the file-level (first-level) and contract-level (second-level) keys. A file-level key can be either the wildcard or a specific file name, whereas the contract-level key can only be the wildcard for robustness reasons. Thus, output can be requested in 2 ways: // All files and all contracts:\\n{ \\"settings\\": { \\"outputSelection\\": { \\"*\\": { \\"*\\": [/* specific contract-level output fields */], \\"\\": [/* specific file-level output fields */] } } }\\n} // Specific files and all their contracts:\\n{ \\"settings\\": { \\"outputSelection\\": { \\"path/to/my/file.sol\\": { \\"*\\": [/* specific contract-level output fields */], \\"\\": [/* specific file-level output fields */] }, // Rest of files... } }\\n}","breadcrumbs":"resolc user guide » Standard JSON interface » The “all” ( *) wildcard","id":"34","title":"The “all” ( *) wildcard"},"35":{"body":"Note Currently, resolc supports requesting either the full evm output, or one more level of specificity, such as evm.bytecode. When requesting code generation, such as evm.bytecode or evm.assembly, the resolc compilation process additionally needs ast, metadata, irOptimized, and evm.methodIdentifiers selectors. These selectors will be automatically added if code generation is needed, but will only be included in the output if explicitly requested. { \\"settings\\": { \\"outputSelection\\": { \\"path/to/my/file1.sol\\": { // Contracts in this file will generate bytecode. // Only these fields of the JSON output selection will be in the `contracts` output. \\"*\\": [\\"abi\\", \\"evm.methodIdentifiers\\", \\"metadata\\", \\"evm.bytecode\\"], // Only this field of the JSON output selection will be in the `sources` output. \\"\\": [\\"ast\\"] }, \\"path/to/my/file2.sol\\": { // No contracts in this file will generate bytecode. \\"*\\": [\\"abi\\", \\"evm.methodIdentifiers\\", \\"metadata\\"], // No `ast` will be in the `sources` output (only the automatically added `id`, // similar to solc as this is not a configurable output selection). \\"\\": [] }, } }\\n}","breadcrumbs":"resolc user guide » Standard JSON interface » The contract-level evm output selection","id":"35","title":"The contract-level evm output selection"},"36":{"body":"This section highlights some potentially observable differences in the YUL EVM dialect translation compared to Ethereum Solidity. Solidity developers deploying dApps to pallet-revive ought to read and understand this section well.","breadcrumbs":"resolc user guide » Differences to EVM » Differences to EVM","id":"36","title":"Differences to EVM"},"37":{"body":"Our contract runtime does not differentiate between runtime code and deploy (constructor) code.\\nInstead, both are emitted into a single PVM contract code blob and live on-chain.\\nTherefore, in EVM terminology, the deploy code equals the runtime code. Tip In constructor code, the codesize instruction will return the call data size instead of the actual code blob size.","breadcrumbs":"resolc user guide » Differences to EVM » Deploy code vs. runtime code","id":"37","title":"Deploy code vs. runtime code"},"38":{"body":"We are aware of the following differences in the translation of Solidity code.","breadcrumbs":"resolc user guide » Differences to EVM » Solidity","id":"38","title":"Solidity"},"39":{"body":"pallet-revive doesn’t apply the 63/64 gas rule. We strongly advice to change any code calling untrusted contracts to supply a limited amount of gas only!","breadcrumbs":"resolc user guide » Differences to EVM » The 63/64 gas rule","id":"39","title":"The 63/64 gas rule"},"4":{"body":"resolc is a Solidity v0.8 compiler for Polkadot native smart contracts. Solidity compiled with resolc targets PolaVM (PVM). Thanks to additional compiler optimizations and the PVM JIT, contract code can execute much faster than the EVM equivalent. resolc supports almost all Solidity v0.8 features including inline assembly, offering a high level of comptability with the Ethereum Solidity reference implementation.","breadcrumbs":"resolc user guide » resolc user guide","id":"4","title":"resolc user guide"},"40":{"body":"This returns the bytecode keccak256 hash instead.","breadcrumbs":"resolc user guide » Differences to EVM » address.creationCode","id":"40","title":"address.creationCode"},"41":{"body":"The below list contains noteworthy differences in the translation of YUL functions. Note Many functions receive memory buffer offset pointer or size arguments. The PVM pointer size is 32 bit, supplying memory offset or buffer size values above 2^32-1 may lead to OutOfGas errors trap contract execution. The solc compiler ought to always emit valid memory references, so Solidity dApp authors don’t need to worry about this unless they deal with low level assembly code.","breadcrumbs":"resolc user guide » Differences to EVM » YUL functions","id":"41","title":"YUL functions"},"42":{"body":"In general, revive preserves the memory layout, meaning low level memory operations are supported. However, a few caveats apply: The EVM linear heap memory is emulated using a fixed byte buffer of 128kb. This implies that the maximum memory a contract can use is limited to 128kb (on Ethereum, contract memory is capped by gas and therefore varies). Thus, accessing memory offsets larger than the fixed buffer size will trap the contract at runtime with an OutOfBound error. The compiler might detect and optimize unused memory reads and writes, leading to a different msize compared to what the EVM would see.","breadcrumbs":"resolc user guide » Differences to EVM » mload, mstore, msize, mcopy (memory related functions)","id":"42","title":"mload, mstore, msize, mcopy (memory related functions)"},"43":{"body":"In the constructor code, the offset is ignored and this always returns 0. Warning pallet-revive restricts the calldata size (to 128kb at the time of writing).","breadcrumbs":"resolc user guide » Differences to EVM » calldataload, calldatacopy","id":"43","title":"calldataload, calldatacopy"},"44":{"body":"Only supported in constructor code.","breadcrumbs":"resolc user guide » Differences to EVM » codecopy","id":"44","title":"codecopy"},"45":{"body":"Deployments on revive work different than on EVM. In a nutshell: Instead of supplying the deploy code concatenated with the constructor arguments (the EVM deploy model), the revive runtime expects two pointers: A buffer containing the code hash to deploy. The constructor arguments buffer. To make contract instantiation using the new keyword in Solidity work seamlessly, revive translates the dataoffset and datasize instructions so that they assume the contract hash instead of the contract code.\\nThe hash is always of constant size.\\nThus, revive is able to supply the expected code hash and constructor arguments pointer to the runtime. Warning This might fall apart in code creating contracts inside assembly blocks. We strongly discourage using the create family opcodes to manually craft deployments in assembly blocks! Usually, the reason for using assembly blocks is to save gas, which is likely futile on revive due to the underlying differences in the VM architectures, gas models and transaction costs.","breadcrumbs":"resolc user guide » Differences to EVM » create, create2","id":"45","title":"create, create2"},"46":{"body":"Returns the contract hash.","breadcrumbs":"resolc user guide » Differences to EVM » dataoffset","id":"46","title":"dataoffset"},"47":{"body":"Returns the contract hash size (constant value of 32).","breadcrumbs":"resolc user guide » Differences to EVM » datasize","id":"47","title":"datasize"},"48":{"body":"pallet-revive restricts the returndata size (to 128kb at the time of writing).","breadcrumbs":"resolc user guide » Differences to EVM » revert, return","id":"48","title":"revert, return"},"49":{"body":"Translates to a constant value of 2500000000000000.","breadcrumbs":"resolc user guide » Differences to EVM » prevrandao, difficulty","id":"49","title":"prevrandao, difficulty"},"5":{"body":"revive is the name of the overarching “Solidity to PolkaVM” compiler project, which contains multiple components (for example the Yul parser, the code generation library, the resolc executable itself, and many more things). resolc is the name of the compiler driver executable, combining many revive components in a single and easy to use binary application. In other words, revive is the whole compiler infrastructure (more like LLVM) and resolc is a user-facing single-entrypoint compiler frontend (more like clang).","breadcrumbs":"resolc user guide » revive vs. resolc nomenclature","id":"5","title":"revive vs. resolc nomenclature"},"50":{"body":"Only valid to use in EVM (they also have no use case in PVM) and produce a compile time error.","breadcrumbs":"resolc user guide » Differences to EVM » pc, extcodecopy","id":"50","title":"pc, extcodecopy"},"51":{"body":"Related to the Ethereum rollup model and produce a compile time error. Polkadot offers a superior rollup model, removing the use case for blob data related opcodes.","breadcrumbs":"resolc user guide » Differences to EVM » blobhash, blobbasefee","id":"51","title":"blobhash, blobbasefee"},"52":{"body":"There are two different compilation pipelines available in solc and there are small differences between them. Since resolc processes the YUL IR, always assume the solc IR based codegen behavior for contracts compiled with the revive compiler.","breadcrumbs":"resolc user guide » Differences to EVM » Difference regarding the solc via-ir mode","id":"52","title":"Difference regarding the solc via-ir mode"},"53":{"body":"With via-ir, base constructors run before derived state variables are initialized: contract InnerContract { uint public innerConstructedStartTokenId; constructor() { innerConstructedStartTokenId = _startTokenId(); } function _startTokenId() internal view virtual returns (uint) { return 0; }\\n} contract Test is InnerContract { uint public START_TOKEN_ID = 1; constructor() InnerContract() { } function _startTokenId() internal view virtual override returns (uint) { return START_TOKEN_ID; }\\n} Here, innerConstructedStartTokenId in Test returns 0 (with legacy EVM codegen it’d return 1).","breadcrumbs":"resolc user guide » Differences to EVM » Example: State variable initialization order in inheritance","id":"53","title":"Example: State variable initialization order in inheritance"},"54":{"body":"Note This is not yet implemented but something for consideration on the roadmap. Solidity - tightly coupled to the EVM - introduces some inherent inefficiencies that are by design and either needs to be followed or can’t be easily worked around, even with efforts like better optimized compiler and VM implementations. This represents a technical dead end. So far the EVM sees no adoption beyond the blockchain industry. Chances are that the EVM end up deprecated for technical reasons (or maybe not and the RISC-V idea gets abandoned, who knows). PVM, however, is a general purpose VM. It supports LLVM based mainstream programming languages like Rust. It’s a common software engineering practice to compose applications from pieces written in multiple languages, using each to their own strength. For example, AI solutions traditionally use the python scripting language for convenient developer experience, while the underlying AI models get implemented in a lower level language such as C++. The same pattern can of course be applied to dApps, where we’d expect application specific languages like Solidity mixed with libraries implementing computationally complex algorithms in a lower level language. Business logic and user interfaces are naturally implemented as regular Solidity dApps which can include (link against) Rust libraries. Rust is a fast, safe low level language and the Polkadot SDK is written in Rust itself, making it an excellent choice. For example, ZK proof verifiers or expensive DeFi primitives would benefit greatly from Rust implementations. revive provides tooling support and a small Rust contracts SDK for seamless integration with Rust libraries.","breadcrumbs":"resolc user guide » Rust contract libraries » Rust contract libraries","id":"54","title":"Rust contract libraries"},"55":{"body":"Running contract code usually requires a blockchain node. While local dev nodes can be used, sometimes it’s just not desirable to do so. Instead, it can be much more convenient to run and debug contract code with a stripped down environment. This is where the revive-runner comes in handy. In a nutshell, it is a single-binary no-blockchain pallet-revive runtime.","breadcrumbs":"revive-runner sandbox » revive-runner sandbox","id":"55","title":"revive-runner sandbox"},"56":{"body":"Inside the root revive repository directory, install it from source (requires Rust installed): make install-revive-runner After installing, see revive-runner --help for usage help.","breadcrumbs":"revive-runner sandbox » Installation and usage","id":"56","title":"Installation and usage"},"57":{"body":"The standard RUST_LOG environment variable controls the log output from the contract execution. This includes revive runtime logs and PVM execution trace logs. Sometimes it’s convenient to have more fine granular insight. Some useful filters: RUST_LOG=runtime=trace: The pallet-revive runtime trace logs. RUST_LOG=polkavm=trace: Low level PolkaVM instruction tracing.","breadcrumbs":"revive-runner sandbox » Trace logs","id":"57","title":"Trace logs"},"58":{"body":"To avoid running the constract in an unitialized state, revive-runner automatically instantiates the contract before calling it (constructor arguments can be provided).","breadcrumbs":"revive-runner sandbox » Automatic contract instantiation","id":"58","title":"Automatic contract instantiation"},"59":{"body":"Suppose we want to trace the syscalls of the execution of a compiled contract file Flipper.pvm: RUST_LOG=runtime=trace revive-runner -f Flipper.pvm\\n[DEBUG runtime::revive] Contract memory usage: purgable=6144/3145728 KB baseline=103063/1572864\\n[TRACE runtime::revive::strace] call_data_size() = Ok(0) gas_consumed: Weight { ref_time: 985209, proof_size: 0 }\\n[TRACE runtime::revive::strace] value_transferred(out_ptr: 4294836096) = Ok(()) gas_consumed: Weight { ref_time: 2937634, proof_size: 0 }\\n[TRACE runtime::revive::strace] call_data_copy(out_ptr: 131216, out_len: 0, offset: 0) = Ok(()) gas_consumed: Weight { ref_time: 4084483, proof_size: 0 }\\n[TRACE runtime::revive::strace] seal_return(flags: 0, data_ptr: 131216, data_len: 0) = Err(TrapReason::Return(ReturnData { flags: 0, data: [] })) gas_consumed: Weight { ref_time: 5510615, proof_size: 0 }\\n[TRACE runtime::revive] frame finished with: Ok(ExecReturnValue { flags: (empty), data: [] })\\n[TRACE runtime::revive::strace] call_data_size() = Ok(0) gas_consumed: Weight { ref_time: 985209, proof_size: 0 }\\n[TRACE runtime::revive::strace] seal_return(flags: 1, data_ptr: 131088, data_len: 0) = Err(TrapReason::Return(ReturnData { flags: 1, data: [] })) gas_consumed: Weight { ref_time: 2456669, proof_size: 0 }\\n[TRACE runtime::revive] frame finished with: Ok(ExecReturnValue { flags: REVERT, data: [] })","breadcrumbs":"revive-runner sandbox » Example","id":"59","title":"Example"},"6":{"body":"Building Solidity contracts for PolkaVM requires installing the following two compilers: solc: The Ethereum Solidity reference compiler implementation. resolc: The revive Solidity compiler YUL frontend and PolkaVM code generator.","breadcrumbs":"resolc user guide » Installation » Installation","id":"6","title":"Installation"},"60":{"body":"This chapter covers internal aspects of the compiler and helps contributors getting started with the revive codebase.","breadcrumbs":"Developer Guide » Developer guide","id":"60","title":"Developer guide"},"61":{"body":"The revive compiler is an open source software project and we gladly accept quality contributions from anyone!","breadcrumbs":"Developer Guide » Contributor guide » Contributor guide","id":"61","title":"Contributor guide"},"62":{"body":"A quick reference on how to build the Solidity compiler is maintained in the project’s README.md.","breadcrumbs":"Developer Guide » Contributor guide » Getting started","id":"62","title":"Getting started"},"63":{"body":"The Makefile comprehensively encapsulates all development aspects of this codebase. It is kept concise and readable. Please read and use it! You’ll learn for example: How to build and install a resolc development version. How to run tests and benchmarks. How to cross-compile resolc. As a general rule-of-thumb: If make test runs fine locally, chances for green CI pipelines are good.","breadcrumbs":"Developer Guide » Contributor guide » Using the Makefile","id":"63","title":"Using the Makefile"},"64":{"body":"For the most parts, revive is a rather standard Rust workspace codebase. There are some non-Rust dependencies, which sometimes complicates things a little bit. The crates/ dir All Rust crates live under the crates/ directory. The workspace automatically considers any crate found therein. If you need to add a new create, please implement it there. Compiler library crates should be named with the revive- prefix. The crate location doesn’t need the prefix. Dependencies Dependencies should be added as workspace dependencies. Try to avoid pinning dependencies whenever possible. If possible, add dev dependencies as dev-dependencies only. Please do always include the Cargo.lock dependency lock file with your PR. Please don’t run cargo update together with other changes (it is preferred to update the lock file in a dedicated dependency update PR).","breadcrumbs":"Developer Guide » Contributor guide » Codebase organization","id":"64","title":"Codebase organization"},"65":{"body":"Changes must be submitted via a pull request (PR) to the github upstream repository. Ensure that your branch passes make test locally when submitting a pull request. A PR must not be merged until CI fully passes. Exceptions can be made (for example to fix CI issues itself). No force pushes to the main branch and open PR branches. Maintainers can request changes or deny contributions at their own discretion.","breadcrumbs":"Developer Guide » Contributor guide » Contribution rules","id":"65","title":"Contribution rules"},"66":{"body":"We require the official Rust formatter and clippy linter. In addition to that, please also consider the following best-effort aspects: Avoid magic numbers and strings. Instead, add them as module constants. Avoid abbreviated variable and function names. Always provide meaningful and readable symbols. Don’t write macros and don’t use third party macros for things that can easily be expressed in few lines of code or outlined into functions. Avoid import aliasing. Please use the parent or fully qualified path for conflicting symbols. Any inline comments must provide additional semantic meaning, explain counter-intuitive behavior or highlight non-obvious design decisions. In other words, try to make the code expressive enough to a degree it doesn’t need comments expressing the same thing again in the English language. Delete such comments if your AI assistant generated them. Public items must have a meaningful doc comment. Provide meaningful panic messages to .expect() or just use .unwrap().","breadcrumbs":"Developer Guide » Contributor guide » Style guide","id":"66","title":"Style guide"},"67":{"body":"Contributors may use whatever AI assistance tools they wish to whatever degree they wish in the process of creating their contribution, given they acknowledge the following: Project maintainers may reject any contribution (or portions of it) if the contribution shows signs of problematic involvement of generative AI. Judgement of “problematic involvement” lies at the sole discretion of project maintainers. No proof (whether a contribution was in fact AI generated or not) is required. Rationale: No one enjoys reading soulless and uncanny LLM slop. Please review and fix any AI slop yourself prior to submitting a PR. A Solidity compiler is security sensitive software. Even miniscule mistakes can ultimately lead to loss of funds. AI models are inherently stochastic. They regurarly fail to capture important nuances or produce straight hallucinations. Code that was “blindly” generated has no home here. revive is a large codebase. Generative AI assistants may not have enough “context window” to sufficiently capture correctness, consistency and style aspects of the codebase. We’d like to keep this codebase maintainable by humans for the forseeable future.","breadcrumbs":"Developer Guide » Contributor guide » AI policy","id":"67","title":"AI policy"},"68":{"body":"revive relies on solc, the Ethereum Solidity compiler, as the Solidity frontend to process smart contracts written in Solidity. LLVM, a popular and powerful compiler framework, is used as the compiler backend and does the heavy lifting in terms of optimizitations and RISC-V code generation. revive mainly takes care of lowering the Yul intermediate representation (IR) produced by solc to LLVM IR. This approach provides a good balance between maintaining a high level of Ethereum compatibility, good contract performance and feasible engineering efforts.","breadcrumbs":"Developer Guide » Compiler architecture » Compiler architecture and internals","id":"68","title":"Compiler architecture and internals"},"69":{"body":"resolc is the overarching compiler driver library and binary. When compiling a Solidity source file with resolc, the following steps happen under the hood: solc is used to lower the Solidity source code into YUL intermediate representation. revive lowers the YUL IR into LLVM IR. LLVM optimizes the code and emits a RISC-V ELF shared object (through LLD). The PolkaVM linker finally links the ELF shared object into a PolkaVM blob. This compilation process can be visualized as follows:","breadcrumbs":"Developer Guide » Compiler architecture » resolc","id":"69","title":"resolc"},"7":{"body":"resolc is supported an all major operating systems and installation is straightforward.\\nPlease find our binary releases for the following platforms: Linux (MUSL) MacOS (universal) Windows Wasm via emscripten","breadcrumbs":"resolc user guide » Installation » resolc binary releases","id":"7","title":"resolc binary releases"},"70":{"body":"Because on-chain contract code is identified via its code blob hash, it is crucial to maintain reproducible contract builds. A given compiler version must reproduce the contract build exactly on every target platform resolc supports via the official binary releases. To ensure this, we employ the following measures: The code generation must be fully deterministic. For example iterating over standard HashMap invalidates this due to its internal state, making it an invalid operation in revive. To circumvent that, a BTreeMap can be used instead. We release fully statically linked resolc binaries. This prevents dynamic linking of potentially differentiating libraries. The only non-bundled dependency is the solc compiler. This is considered fine because the same properties apply to solc.","breadcrumbs":"Developer Guide » Compiler architecture » Reproducible contract builds","id":"70","title":"Reproducible contract builds"},"71":{"body":"The main compiler logic is implemented in the revive-yul and revive-llvm-context crates. The Yul library implements a lexer and parser and lowers the resulting tree into LLVM IR. It does so by emitting LL using the LLVM builder and our own revive-llvm-context compiler context crate. The revive LLVM context crate encapsulates code generation logic (decoupled from the parser). The Yul library also implements a simple visitor interface (see visitor.rs). If you want to work with the AST, it is strongly recommended to implement visitors. The LLVM code generation is implemented using a dedicated trait for historical reasons only.","breadcrumbs":"Developer Guide » Compiler architecture » The revive compiler libraries","id":"71","title":"The revive compiler libraries"},"72":{"body":"PVM doesn’t offer a similar API. Hence the emitted contract code emulates the linear EVM heap memory using a static byte buffer. Data inside this byte buffer is kept big endian for EVM compatibility reasons (unaligned access is allowed and makes optimizing this non-trivial). Unlike with the EVM, where heap memory usage is gas metered, our heap size is static (the size is user controllable via a setting flag). The compiler emits bound checks to prevent overflows.","breadcrumbs":"Developer Guide » Compiler architecture » EVM heap memory","id":"72","title":"EVM heap memory"},"73":{"body":"LLVM is a special non Rust dependency. We interface its builder interface via the inkwell wrapper crate. We use upstream LLVM, but release and use our custom builds. We require the compiler builtins specifically built for the PVM rv64emacb target and always leave assertions on. Furthermore, we need cross builds because resolc itself targets emscripten and musl. The revive-llvm-builer functions as a cross-platform build script and is used to build and release the LLVM dependency. We also maintain the lld-sys crate for interfacing with LLD. The LLVM linker is used during the compilation process, but we don’t want to distribute another binary.","breadcrumbs":"Developer Guide » Compiler architecture » The LLVM dependency","id":"73","title":"The LLVM dependency"},"74":{"body":"An experimental newyork optimizer introduces a custom IR layer between Yul and LLVM IR to capture optimization opportunities that neither solc nor LLVM can realize on their own. solc optimizes for EVM gas on a 256-bit big-endian stack machine, while LLVM lacks the domain knowledge to understand EVM memory semantics or Solidity patterns. The newyork IR bridges this gap with passes for type narrowing, memory optimization, function deduplication, and more.","breadcrumbs":"Developer Guide » Compiler architecture » Custom optimizations","id":"74","title":"Custom optimizations"},"75":{"body":"The newyork crate ( crates/newyork/) introduces an additional intermediate representation (IR) layer between Yul and LLVM IR. It enables domain-specific optimizations that neither solc nor LLVM can perform on their own, because they lack semantic knowledge about the cross-domain compilation from EVM to PolkaVM. Note The newyork optimizer is experimental. It is gated behind the --newyork CLI flag or the settings.polkavm.newyork field in standard JSON input, and not yet enabled by default.","breadcrumbs":"Developer Guide » The newyork optimizer » The newyork optimizer","id":"75","title":"The newyork optimizer"},"76":{"body":"The EVM and PolkaVM are fundamentally different machines: Property EVM PolkaVM (RISC-V) Word size 256-bit 64-bit Endianness Big-endian Little-endian Architecture Stack machine Register-based Memory model Linear with free pointer convention Flat address space solc optimizes Yul IR for EVM gas costs on a 256-bit big-endian stack machine. LLVM, on the other hand, operates at too low a level to understand EVM memory semantics or Solidity patterns. By the time Yul reaches LLVM IR, the high-level intent is lost. The newyork IR sits between these two worlds and recovers enough semantic information to make optimization decisions that neither compiler can make alone.","breadcrumbs":"Developer Guide » The newyork optimizer » Motivation","id":"76","title":"Motivation"},"77":{"body":"┌──────────────────────────────────────────────────┐\\nYul AST ──────────► │ newyork IR │ ──► LLVM IR ──► RISC-V from_yul│ │ to_llvm │ 1. inline │ │ 2. simplify (pass 1) │ │ 3. dedup (exact + fuzzy) │ │ 4. mem_opt + fmp_prop + keccak_fold │ │ 5. simplify (pass 2) │ │ 6. mapping_access_outlining + guard_narrow │ │ 7. simplify (pass 3) │ │ 8. dedup (exact + fuzzy, pass 2) │ │ ── recursive on subobjects ── │ │ 9. type_inference (iterative narrowing) │ │ 10. late inline loop: inline, simplify, outline, │ │ guard-narrow, simplify, dedup, narrow │ │ 11. heap_opt (analysis) │ │ 12. validate │ └──────────────────────────────────────────────────┘ The optimizer runs the following passes in order: Inlining – custom heuristics tuned for PolkaVM call overhead, with Tarjan SCC-based recursion detection and quadratic leave-overhead modeling. Simplify (pass 1) – constant folding, algebraic identities, strength reduction ( mul by power-of-2 to shl), copy propagation, dead code elimination, environment read CSE ( callvalue, caller, origin, etc.), and revert pattern outlining (panic selectors, custom error selectors). Function deduplication – exact structural match, then fuzzy dedup (functions differing only in literal constants are parameterized and merged, up to 4 differing positions). Memory optimization – load-after-store elimination, keccak256 fusion ( mstore + keccak256 sequences into Keccak256Single/ Keccak256Pair nodes), free memory pointer propagation (replaces mload(0x40) with a known constant), and constant keccak256 folding (precomputes hashes of compile-time-constant inputs). Simplify (pass 2) – cleans up dead code and new constant expressions exposed by memory optimization and keccak folding. Compound outlining – detects keccak256_pair + sload/ sstore sequences and fuses them into MappingSLoad/ MappingSStore IR nodes, eliminating intermediate hash values. Guard narrowing – detects if gt(val, MASK) { revert } and iszero(eq(val, and(val, MASK))) patterns and inserts AND-mask narrowing, giving type inference proof that values fit in fewer bits. Simplify (pass 3) – propagates opportunities created by compound outlining and guard narrowing. Function deduplication (pass 2) – catches new duplicates exposed by guard narrowing and compound outlining canonicalization. Type inference – narrows 256-bit values to smaller widths ( I1, I8, I32, I64, I128, I160) where provable. Runs iteratively for up to 4 cascading refinement rounds, combining forward min-width propagation, backward use-context demands, transparent-operation demand propagation, and interprocedural parameter/return narrowing. Late inline loop – now that narrowing and simplification have shrunk wrapper functions below the inline thresholds, re-runs inlining, simplification, mapping access outlining, guard narrowing, deduplication, and type inference to collect the residual opportunities. Heap analysis – analyzes memory access patterns (alignment, static offsets, taintedness, escaping regions) to determine which accesses can use native little-endian layout, skipping byte-swap operations. Uses GCD-based alignment propagation and per-region taint tracking. Validation – checks SSA well-formedness (use-before-def, multiple definitions), yield count consistency, and function reference correctness. Steps 1-8 run recursively on subobjects (deployed contract code), where optimization impact is greatest. Steps 9-12 run on the full object tree.","breadcrumbs":"Developer Guide » The newyork optimizer » Pipeline overview","id":"77","title":"Pipeline overview"},"78":{"body":"The newyork IR is an SSA form with structured control flow, inspired by MLIR’s SCF dialect. Key design choices: Explicit types with address spaces: Every value carries a bit-width ( I1, I8, I32, I64, I128, I160, I256) and pointers carry address space information ( Heap, Stack, Storage, Code). All values start as I256 and are narrowed by type inference. Pure expressions vs. effectful statements: Expressions compute values without side effects; statements perform memory, storage, or control flow effects. This separation simplifies analysis and rewriting. Semantic annotations: Memory operations are tagged with region information ( Scratch, FreePointerSlot, Dynamic). Storage operations carry static slot values when known at compile time. Structured control flow: If, Switch, and For nodes preserve the high-level structure from Yul, with explicit region arguments and yields for value flow across control edges. For per-operation detail — printed syntax, operand and result types, and more — see the newyork IR reference.","breadcrumbs":"Developer Guide » The newyork optimizer » IR design","id":"78","title":"IR design"},"79":{"body":"","breadcrumbs":"Developer Guide » The newyork optimizer » Key optimizations explained","id":"79","title":"Key optimizations explained"},"8":{"body":"resolc uses solc during the compilation process, please refer to the Ethereum Solidity documentation for installation instructions.","breadcrumbs":"resolc user guide » Installation » Installing the solc dependency","id":"8","title":"Installing the solc dependency"},"80":{"body":"EVM operates on 256-bit words, but most values in practice fit in 32 or 64 bits. The type inference pass performs bidirectional analysis: Forward: computes minimum width from literal values and operation semantics (e.g., add(I64, I8) produces I65, rounded up to I128). Backward use tracking: classifies each value’s uses into 9 context categories ( MemoryOffset, MemoryValue, StorageAccess, Comparison, Arithmetic, FunctionArg, FunctionReturn, ExternalCall, General). All categories conservatively demand the full I256 width by default; the categorization is what enables the interprocedural phase to selectively relax the demand for narrowed function arguments. Earlier versions narrowed directly from the use category, but that was unsound for memory offsets — mload(2^128) aliased to mload(0) because the bounds check ran on an already-truncated value (commit ccca38df). Transparent demand propagation: for modular-arithmetic operations ( Add, Sub, Mul, And, Or, Xor), propagates narrow demands backward through operands, exploiting the property that trunc(op(a,b), N) == op(trunc(a,N), trunc(b,N)). Interprocedural: iteratively narrows function parameter and return types in up to four rounds, combining four narrowing strategies — body-driven parameter narrowing, caller-driven parameter narrowing, forward-based return narrowing, and demand-based return narrowing — and re-running full inference between rounds. Parameters are clamped to at least I32 (XLEN on PolkaVM). This allows LLVM to emit native 32/64-bit instructions instead of software-emulated 256-bit arithmetic, and eliminates expensive multi-instruction comparison sequences (16-20 RISC-V instructions for i256 comparisons reduced to 1-2 for i64).","breadcrumbs":"Developer Guide » The newyork optimizer » Type narrowing","id":"80","title":"Type narrowing"},"81":{"body":"Solidity emits runtime guards that prove values fit in narrow ranges (e.g., address validation via if gt(val, 2^160-1) { revert }). The guard narrowing pass detects these patterns and inserts explicit AND-mask narrowing after the guard. This gives downstream type inference proof that the value fits in fewer bits, enabling cascading narrowing of comparisons, arithmetic, and memory operations that use the guarded value. Two pattern families are recognized: GT-based guards: if gt(val, MASK) { } where MASK is a boundary value like 2^N - 1 EQ-based guards: iszero(eq(val, and(val, MASK))) patterns common in Solidity’s address validation","breadcrumbs":"Developer Guide » The newyork optimizer » Guard narrowing","id":"81","title":"Guard narrowing"},"82":{"body":"PVM doesn’t provide EVM-compatible linear memory, so the compiler emulates it using a byte buffer with byte-swap operations for big-endian compatibility. The heap analysis pass determines which memory accesses can use native little-endian layout by analyzing access patterns: Tracks alignment and static offset information for all memory accesses using GCD-based propagation Propagates taintedness when addresses escape to external calls, are written by external sources ( codecopy, calldatacopy), or use unaligned access patterns Tracks variable-accessed offsets to prevent mode mismatches between native and byte-swap accesses to the same location Handles loop-carried variables conservatively (marked as non-literal to prevent false constant propagation) The codegen backend supports four memory access modes: AllNative (all accesses skip byte-swap), InlineNative (constant-offset accesses use native layout), InlineByteSwap (constant-offset accesses use inline byte-swap), and ByteSwap (standard byte-swap through helper functions).","breadcrumbs":"Developer Guide » The newyork optimizer » Heap optimization","id":"82","title":"Heap optimization"},"83":{"body":"The Solidity free memory pointer ( mload(0x40)) always fits in 32 bits — sbrk enforces FMP < heap_size on every store, regardless of which memory mode the contract uses. After every literal mload(0x40), codegen emits a trunc N → zext 256 chain (where N is bits(heap_size - 1), e.g. 17 for the 131,072-byte default heap). The trunc-extend round-trip is a no-op semantically, but exposes the bound to LLVM’s IPSCCP range analysis, which then propagates it through every add(fmp, K) and eliminates the trailing safe_truncate_int_to_xlen overflow checks at every FMP-derived offset use. Despite only affecting a single codegen site, this is the single largest contributor to the optimizer’s code-size reduction. A subtle gating issue: the byte-order mode ( InlineNative / ByteSwap) and the value bound on FMP are independent invariants. fmp_native_safe() and can_use_native(0x40) protect against mixing little-endian writers with big-endian readers on the FMP slot, which would corrupt the stored offset; the value bound is unrelated and holds in every mode. Earlier versions of the codegen gated the load-side range proof on the byte-order checks, which suppressed the optimization for any contract with dynamic memory accesses. Decoupling the two reasonings — keeping the byte-order gate on the store side, dropping it from the load-side range proof — is what makes the multiplicative IPSCCP effect available to OZ-class contracts.","breadcrumbs":"Developer Guide » The newyork optimizer » Free memory pointer range proof","id":"83","title":"Free memory pointer range proof"},"84":{"body":"The FMP slot is small but easy to mis-optimize. The codebase carries several\\nregression tests for previously-found soundness bugs; new FMP-related changes\\nshould be verified against them: mload_at_fmp_slot ( crates/integration/src/tests.rs, fixed in 1fd6063c): tests mload(0x40) and offsets near it ( 0x21, 0x3f, 0x42)\\non a contract that also performs dynamic mloads. Catches byte-order mismatches\\nwhen one access goes native (LE) and another goes byte-swap (BE). The fix\\nblocks native mode for FMP whenever has_dynamic_accesses is true. mload_huge_offset_traps (fixed in ccca38df): tests that mload(2^128) and mload(2^255) correctly trap via the gas-exhaustion\\npath. Catches UseContext::MemoryOffset narrowing bypassing the safe_truncate_int_to_xlen overflow check at the use site — mload(2^128) aliasing to mload(0) and returning the zero-initialized\\nscratch slot. The fix classifies MemoryOffset as I256 so it doesn’t\\ndrive narrowing; the bounds check at the use site catches out-of-range. FMP i32 shortcut removal ( dbcfc921): an earlier optimization stored\\nonly 4 bytes at offset 0x40 instead of the full 32-byte EVM word, breaking\\nany inline assembly using mstore(0x40, ...) for non-FMP purposes.\\nCaused a cascade of 249/251 retester failures via allocator corruption.\\nNo dedicated regression test was added — the retester corpus was sufficient\\ncoverage — but the lesson generalizes: writes to 0x40 must store the full\\nword, even when the high bits are provably zero, because the slot is part\\nof the same 32-byte memory region read by other code. When adding an optimization that touches FMP, distinguish carefully between:\\nthe byte-order encoding at the slot (must be consistent between writers\\nand readers), the value bound (FMP < heap_size, always true), and the stored width (must be 32 bytes for mstore(0x40, ...), even though only\\nthe low N bits are non-zero). Known limitation: dynamic full-word stores to the FMP word The fmp_could_be_unbounded analysis flags a static mstore(0x40, untrusted) and any\\ndynamic-offset mstore8, but not a dynamic-offset full-word mstore. Such a store whose\\ni256 offset wraps (mod 2²⁵⁶) to the FMP word [0x40, 0x5f] overwrites the free pointer with an\\narbitrary value, which the load-side range proof would then truncate — a miscompile. This is a deliberate, documented gap rather than a bug fix because there is no cheap sound\\ndiscriminator. A store hits the FMP word iff its offset lands in [0x40, 0x5f], which is\\nin-bounds — safe_truncate_int_to_xlen only traps offsets ≥ heap_size — and 256-bit wrap lets\\nany computed add(base, k) reach 0x40 with an adversarial operand, so the offset cannot be\\nproven to miss the slot from width/range information. The only sound recognizer (treat add(fmp, small_const) as ≥ 0x80 by induction on FMP-boundedness) needs new FMP-derivation\\ndataflow, is fragile, and still misses dynamic-index array stores. Conservatively flagging every\\ndynamic full-word store (as the rare dynamic mstore8 does, where it is free) disables the FMP\\nrange proof for essentially every contract — measured at roughly +9% / +30 KB on the\\nOpenZeppelin corpus. The gap is unreachable from solc output: solc’s dynamic memory stores are all free-pointer-relative\\n( ≥ 0x80) and never target 0x40. Only hand-written Yul ( resolc --yul) with an offset\\nengineered to equal 0x40 reaches it.","breadcrumbs":"Developer Guide » The newyork optimizer » Soundness traps for FMP optimizations","id":"84","title":"Soundness traps for FMP optimizations"},"85":{"body":"Two complementary optimizations target the common Solidity pattern of hashing values for storage slot computation: Fusion: Recognizes mstore + keccak256 sequences and fuses them into dedicated IR nodes ( Keccak256Single, Keccak256Pair), eliminating intermediate memory traffic. Constant folding: When all keccak256 inputs are compile-time constants, the hash is computed at compile time and replaced with a literal. Known limitation: constant-folding drops the fused-keccak scratch write-back The fused Keccak256Pair/ Keccak256Single helpers write their inputs back to scratch memory\\n( [0, 0x40) / [0, 0x20)), and fusion dead-eliminates the original mstores because that\\nwrite-back reproduces them. Constant-folding the fused node to a literal removes the helper, so the\\nscratch is left unwritten — a later mload from [0, 0x40) that the optimizer cannot forward\\n(across a region/call boundary) would read stale memory. This gap is deliberately left open: it is solc-unreachable (solc treats scratch as volatile and never\\nre-reads it as data after a keccak), and every sound fix is a code-size regression because the dropped\\nwrite-back means the current output is already short the stores (disabling the fold falls back to the\\nruntime keccak helper, +0.78% on the OZ corpus, with no later mem_opt pass to clean re-emitted\\nwrites). Only hand-written Yul that reads scratch after a constant-operand keccak across a boundary\\ncan observe it.","breadcrumbs":"Developer Guide » The newyork optimizer » Keccak256 fusion and folding","id":"85","title":"Keccak256 fusion and folding"},"86":{"body":"Solidity mapping accesses follow a predictable pattern: hash a key with a storage slot, then load/store the result. The compound outlining pass detects keccak256_pair(key, slot) followed by sload/ sstore and fuses them into MappingSLoad/ MappingSStore IR nodes. These are lowered to outlined helper functions ( __revive_mapping_sload, __revive_mapping_sstore) that combine the hash computation with the storage operation, eliminating intermediate values and redundant byte-swaps.","breadcrumbs":"Developer Guide » The newyork optimizer » Compound outlining (mapping access)","id":"86","title":"Compound outlining (mapping access)"},"87":{"body":"Solidity generates many near-identical functions that differ only in literal constants (e.g., error selectors, storage slot offsets). Fuzzy deduplication identifies such groups, parameterizes the differing literals (up to 4 positions), and replaces all copies with calls to a single shared implementation.","breadcrumbs":"Developer Guide » The newyork optimizer » Fuzzy function deduplication","id":"87","title":"Fuzzy function deduplication"},"88":{"body":"The simplify pass detects common revert patterns and replaces them with compact IR nodes: Panic reverts: Solidity Panic(uint256) sequences (selector 0x4e487b71 + encoded panic code) are collapsed into PanicRevert { code } nodes, which are lowered to shared helper functions. Custom error reverts: ABI-encoded custom error reverts with known selectors are collapsed into CustomErrorRevert { selector, args } nodes. These patterns appear dozens of times in typical contracts, and outlining them into shared blocks eliminates significant code duplication.","breadcrumbs":"Developer Guide » The newyork optimizer » Revert pattern outlining","id":"88","title":"Revert pattern outlining"},"89":{"body":"The LLVM codegen backend generates approximately 15 types of outlined helper functions for common operations: Storage: __revive_sload_word, __revive_sstore_word (handle byte-swap internally) Mapping: __revive_mapping_sload, __revive_mapping_sstore (keccak256 + storage in one call) Callvalue: __revive_callvalue, __revive_callvalue_nonzero (boolean optimization for non-payable checks) Calldataload: __revive_calldataload (outlined when >= 20 call sites) Memory: __revive_store_bswap, __revive_exit_checked, __revive_return_word Errors: __revive_error_string_revert_N, __revive_custom_error_N (per data-word count) Keccak wrappers: __keccak256_slot_N (one noinline wrapper per constant slot, internally dispatching to __revive_keccak256_two_words) Additionally, common exit patterns (revert with constant length, zero-value returns) are deduplicated into shared LLVM basic blocks, saving hundreds of instruction copies in large contracts.","breadcrumbs":"Developer Guide » The newyork optimizer » Outlined helper functions","id":"89","title":"Outlined helper functions"},"9":{"body":"We distribute the revive compiler as node.js module.","breadcrumbs":"resolc user guide » Installation » revive NPM package","id":"9","title":"revive NPM package"},"90":{"body":"","breadcrumbs":"Developer Guide » The newyork optimizer » Codesize results","id":"90","title":"Codesize results"},"91":{"body":"Reproducible with cargo test --package revive-integration -- codesize for the Via Yul IR column ( crates/integration/codesize.json) and cargo test --package revive-integration --features newyork -- codesize for the Via newyork IR column ( crates/integration/codesize_newyork.json). Contract Via Yul IR (bytes) Via newyork IR (bytes) Reduction Baseline 838 493 −41.2% Computation 2,368 1,217 −48.6% DivisionArithmetics 11,444 7,370 −35.6% ERC20 18,057 8,726 −51.7% Events 1,614 909 −43.7% FibonacciIterative 1,373 969 −29.4% Flipper 2,205 1,058 −52.0% SHA1 7,830 6,264 −20.0%","breadcrumbs":"Developer Guide » The newyork optimizer » Integration test contracts","id":"91","title":"Integration test contracts"},"92":{"body":"Measured against real-world contracts generated with the OpenZeppelin Wizard. The numbers below are a development snapshot. Contract Via newyork IR (bytes) oz_gov 81,840 erc721 52,634 erc20 45,703 oz_stable 45,052 oz_rwa 41,581 erc1155 33,087 oz_simple_erc20 17,024 proxy 3,748 Total 320,669 For comparison, building the same contracts without the newyork optimizer at the equivalent snapshot produced 563,526 bytes total — a reduction of about −43% across the corpus. Per-contract reductions in the integration suite range from roughly −20% (SHA1, where the bulk of the work is the SHA-1 inner loop and offers little to optimize) to about −52% (Flipper, where the optimizer strips away most of Solidity’s dispatch and storage-access scaffolding).","breadcrumbs":"Developer Guide » The newyork optimizer » OpenZeppelin contracts","id":"92","title":"OpenZeppelin contracts"},"93":{"body":"The first version of the newyork optimizer was authored collaboratively and reviewed extensively by the revive maintainers, as well as Claude Opus, Claude Fable, Qwen, Minimax and Deepseek LLMs, over a span of many months — from early February 2026 through mid-June 2026. The development progressed through several distinct phases: Phase 1 – Initial scaffolding: The first draft established the core IR data structures, Yul-to-newyork-IR translation, and LLVM codegen. Early commits focused on getting a correct round-trip through the new pipeline. Phase 2 – Optimization passes: Once the baseline was stable, optimization passes were added iteratively: inlining, simplification, memory optimization, function deduplication, keccak256 fusion, and type inference. Each pass was validated against differential tests comparing EVM and PVM execution. Phase 3 – Soundness hardening: Several type inference and narrowing approaches turned out to be unsound and had to be reworked: An early type inference approach caused namespace collisions across subobjects and was scoped per-object. Caller-based parameter narrowing was polluted by overly aggressive inference and replaced with body-based structural analysis. Backward demand-driven narrowing required multiple iterations to become provably safe. Phase 4 – Measuring and tuning: Systematic measurement of OpenZeppelin contracts revealed which optimizations had the most impact and which approaches regressed performance. Throughout development the optimizer was validated against the existing integration and differential test suites (containing over 30,000 test cases), which run each contract on both EVM and PVM and assert identical state changes. The newyork compiler pipeline introduced no new regressions over these test suites. This was achieved by careful manual reviews and many LLM bughunt loops. Additionally, a final security review by Anthropic’s Fable 5 LLM found no remaining soundness issues. As with any new compiler feature, it should still be treated as experimental as of now.","breadcrumbs":"Developer Guide » The newyork optimizer » Development history and challenges","id":"93","title":"Development history and challenges"},"94":{"body":"Approach Outcome Storage bswap decomposition (4x bswap.i64) Regressed: LLVM handles bswap.i256 better natively NoInline on __revive_int_truncate +62% regression: PolkaVM call overhead exceeds inline cost Native FMP memory (inline sbrk) Mixed: small contracts improved, large ones regressed from sbrk bloat Shared overflow trap block Mixed: prevented LLVM from eliminating individual dead overflow checks Aggressive IR-level single-call inlining Regressed large contracts (ERC20 +6.1%): merged bodies become monolithic functions LLVM can’t optimize, so large functions are deferred to LLVM’s inliner instead Type-inference narrowing of mload(0x40) to I32 Regressed small contracts (+252 bytes): conflicts with the codegen FMP range proof; the bound is exposed via a trunc→zext pair instead Full simplifier re-run after mem_opt Mixed: helped small ERC20 (−293 bytes) but regressed the OZ stablecoin (+72 bytes); replaced by a targeted keccak-only fold These results highlight a recurring theme: interacting well with LLVM’s own optimization passes is critical. Optimizations at the IR level can inadvertently inhibit LLVM’s downstream passes, sometimes causing surprising regressions.","breadcrumbs":"Developer Guide » The newyork optimizer » Approaches that did not work","id":"94","title":"Approaches that did not work"},"95":{"body":"The following opportunities have been identified but are not yet implemented: Memory optimization across loop boundaries: Tracked memory state is cleared around for loop condition, body, and post blocks, so load-after-store eliminations do not carry across loop iterations. Preserving loop-invariant state would recover more eliminations. Adaptive inlining thresholds: Current thresholds are static constants. Profile-guided or contract-size-aware heuristics could improve decisions for diverse contract sizes. Extended fuzzy deduplication: The current pass only parameterizes literals in Let bindings and SStore slots. Extending it to consider literals inside MStore, Return, Revert, and Log statements would find more deduplication opportunities. Type checking in validation: The validator checks SSA well-formedness and structure, but not operation type consistency. Type discipline is maintained by construction (type inference and codegen), with LLVM’s IR verifier as the backstop. Loop variable narrowing: Loop-carried variables are conservatively widened to I256. Reaching a fixed-point across loop iterations could allow narrower types for simple counters. Functions with leave inside a for loop are not inlined: the IR-level inliner defers such functions to LLVM’s inliner, so they miss the interprocedural constant propagation and width narrowing the IR-level pass provides.","breadcrumbs":"Developer Guide » The newyork optimizer » Known limitations and future work","id":"95","title":"Known limitations and future work"},"96":{"body":"Passing --debug-output-dir makes the newyork pipeline write IR and analysis artifacts for each compiled contract into that directory. The dumps are produced automatically whenever the directory is set. File Content .newyork Final optimized IR, annotated with the inferred type widths .snapshot.newyork IR snapshot taken before the late passes (only when captured during translation) .heap.newyork Heap analysis summary (native regions/offsets, taintedness, escapes, dynamic accesses) .mem.newyork Memory optimization counters (loads/stores eliminated, keccak fusions, FMP loads eliminated)","breadcrumbs":"Developer Guide » The newyork optimizer » Debug output","id":"96","title":"Debug output"},"97":{"body":"Module Purpose lib.rs Pipeline orchestration and pass sequencing ir.rs Core IR data structures (types, expressions, statements, functions, objects) from_yul.rs Yul AST to newyork IR translation (two-pass with forward reference support) to_llvm.rs newyork IR to LLVM IR codegen with outlined helpers and narrowing simplify.rs Constant folding, algebraic identities, strength reduction, copy propagation, DCE, environment read CSE, revert outlining, callvalue hoisting, function deduplication (exact and fuzzy), constant keccak folding inline.rs Function inlining with PolkaVM-tuned heuristics (Tarjan SCC, leave elimination) type_inference.rs Bidirectional integer width narrowing with transparent demand propagation mem_opt.rs Load-after-store elimination, keccak256 fusion, FMP propagation heap_opt.rs Heap access pattern analysis, alignment tracking, byte-swap elimination mapping_access_outlining.rs Mapping access pattern detection and fusion ( keccak256_pair + sload/ sstore) guard_narrow.rs Guard pattern detection and AND-mask narrowing insertion validate.rs IR well-formedness checks (SSA, yields, function references) printer.rs Human-readable IR pretty printer with configurable output ssa.rs SSA construction helpers (scope management, phi-node merging)","breadcrumbs":"Developer Guide » The newyork optimizer » Module reference","id":"97","title":"Module reference"},"98":{"body":"A per-operation reference for the newyork IR: textual syntax, operand and result types, purity, region and static-slot annotations, and examples.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » newyork IR reference","id":"98","title":"newyork IR reference"},"99":{"body":"This reference page enumerates every operation the newyork IR supports. It is a lookup, not a walkthrough: each entry is self-contained and intended to be reachable by anchor. Operations are grouped by function (memory and storage writes, pure expressions, control flow, and so on) rather than alphabetically. Jump to a specific operation from the operation index below, or use the sidebar. Every operation appears in two places in the codebase. The canonical Rust definition is a variant of either Expression or Statement in ir.rs. The textual rendering used by debug dumps and by this reference page is produced by the printer in printer.rs. Note Treat the printed syntax as a debug surface, not a stable input language: there is no parser for it, and printer details change when passes add new annotations.","breadcrumbs":"Developer Guide » The newyork optimizer » IR reference » How to read this reference","id":"99","title":"How to read this reference"}},"length":239,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"7":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772}},"x":{"0":{"0":{".":{".":{"0":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"8":{"c":{"3":{"7":{"9":{"a":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951}}},"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":4,"docs":{"109":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"4":{"0":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"107":{"tf":1.0},"216":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{"4":{"8":{"7":{"b":{"7":{"1":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"8":{"0":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"109":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"216":{"tf":1.0}}}}}},"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}},"–":{"3":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"5":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"/":{"1":{"0":{"0":{"df":1,"docs":{"221":{"tf":1.0}}},"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"77":{"tf":1.0}}},"1":{",":{"4":{"4":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}}},"2":{"8":{"df":0,"docs":{},"k":{"b":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"217":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"1":{",":{"0":{"7":{"2":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"6":{"df":1,"docs":{"80":{"tf":1.0}}},"7":{",":{"0":{"2":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}},"8":{",":{"0":{"5":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":18,"docs":{"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"f":{"d":{"6":{"0":{"6":{"3":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"–":{"4":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"2":{",":{"2":{"0":{"5":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"0":{".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"5":{"6":{"6":{"6":{"9":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"2":{"5":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"6":{"df":20,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"6":{"3":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"^":{"1":{"6":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.0},"81":{"tf":1.0}}}},"df":7,"docs":{"12":{"tf":1.0},"221":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"3":{",":{"7":{"4":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"2":{"/":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"6":{"6":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"217":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"3":{",":{"0":{"8":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"93":{"tf":1.0}},"f":{"a":{"4":{"df":0,"docs":{},"f":{"2":{"4":{"5":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"8":{"4":{"4":{"8":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"5":{"8":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"4":{"8":{"3":{"6":{"0":{"9":{"6":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{",":{"0":{"5":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"209":{"tf":1.0},"218":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"5":{"1":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"6":{"3":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{"1":{"0":{"6":{"1":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{",":{"5":{"2":{"6":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}},"6":{",":{"2":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"/":{"6":{"4":{"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":5,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"7":{",":{"3":{"7":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"8":{",":{"7":{"2":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"4":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"5":{"2":{"0":{"9":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.0},"41":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"196":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"149":{"tf":1.0},"184":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"202":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}},"v":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"0":{"df":2,"docs":{"111":{"tf":1.0},"191":{"tf":1.0}}},"1":{"df":1,"docs":{"201":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"3":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"111":{"tf":1.0},"195":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"208":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.0},"150":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"35":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.6457513110645907}},"m":{"df":4,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"106":{"tf":1.0},"181":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"66":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}},"o":{"c":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"221":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":10,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0}},"i":{"df":27,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"z":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":110,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"221":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"’":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"p":{"df":1,"docs":{"237":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"190":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"32":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"45":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"_":{"0":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"176":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"32":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"58":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"216":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"235":{"tf":1.0},"54":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"181":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"221":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"232":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"214":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"221":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"150":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"64":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"182":{"tf":1.0},"38":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"85":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"204":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"222":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"102":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"225":{"tf":1.0},"68":{"tf":1.0}},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"237":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"118":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"=":{"1":{"0":{"3":{"0":{"6":{"3":{"/":{"1":{"5":{"7":{"2":{"8":{"6":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":2,"docs":{"12":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"197":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"197":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"221":{"tf":1.0},"237":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"103":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"186":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.7320508075688772},"168":{"tf":1.0},"178":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"196":{"tf":1.0},"218":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"227":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"1":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.4142135623730951},"41":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":5,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"225":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"156":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"238":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"157":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"158":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":2.8284271247461903},"201":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"134":{"tf":1.0},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":12,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.0},"216":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"214":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"g":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"234":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":2.449489742783178},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":2.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"73":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}},"v":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"188":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":49,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"84":{"tf":2.6457513110645907},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"102":{"tf":1.0},"204":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"189":{"tf":1.0},"43":{"tf":1.0},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"102":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"225":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"161":{"tf":1.0},"43":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"102":{"tf":1.0},"162":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":2.23606797749979},"181":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0}}}},"r":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":2.0},"207":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"’":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"102":{"tf":1.0},"144":{"tf":1.7320508075688772},"77":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"64":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"d":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"101":{"tf":1.0},"19":{"tf":2.0},"196":{"tf":3.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"206":{"tf":1.0},"226":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"a":{"3":{"8":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"105":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"153":{"tf":1.0},"221":{"tf":1.4142135623730951},"37":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"167":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"234":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.4142135623730951}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"179":{"tf":1.0}},"i":{"df":3,"docs":{"149":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"df":2,"docs":{"119":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"11":{"tf":2.0},"19":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"z":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"136":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"185":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"216":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":3.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"178":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":5,"docs":{"102":{"tf":1.0},"164":{"tf":1.7320508075688772},"37":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"225":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"223":{"tf":1.0},"55":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.0},"66":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"119":{"tf":1.0},"140":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"196":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":10,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":63,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":4,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"t":{"df":4,"docs":{"11":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}},"x":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"226":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"172":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"195":{"tf":2.23606797749979},"197":{"tf":3.3166247903554},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"220":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"192":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":12,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"221":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"214":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"0":{"tf":2.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"14":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"228":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"131":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"118":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"182":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"66":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":2,"docs":{"140":{"tf":1.0},"60":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"64":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"226":{"tf":1.0},"45":{"tf":1.7320508075688772},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"202":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"176":{"tf":1.0},"202":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"a":{"2":{"8":{"c":{"4":{"c":{"1":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"218":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"188":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"163":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":2.449489742783178},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"s":{"df":4,"docs":{"102":{"tf":1.0},"173":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}},"b":{"c":{"df":0,"docs":{},"f":{"c":{"9":{"2":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}},"’":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"27":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"19":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}},"s":{"df":5,"docs":{"221":{"tf":1.0},"237":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"192":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"140":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":2.0}},"l":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":2.23606797749979},"28":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":5,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"215":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"64":{"tf":3.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"8":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":12,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":3.1622776601683795},"207":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"45":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"204":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":106,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"33":{"tf":1.0},"55":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":7,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"137":{"tf":2.23606797749979},"138":{"tf":1.7320508075688772},"139":{"tf":2.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"226":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"101":{"tf":1.0},"168":{"tf":1.0},"209":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"208":{"tf":1.0},"70":{"tf":1.0}}}}}}}}}}},"v":{"df":2,"docs":{"55":{"tf":1.0},"64":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"21":{"tf":1.0},"238":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.0},"12":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"225":{"tf":3.0},"226":{"tf":2.0},"37":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"153":{"tf":2.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"137":{"tf":1.0},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"176":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"216":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"231":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":1,"docs":{"237":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}},"n":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"r":{"df":3,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"183":{"tf":1.0},"236":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.7320508075688772},"224":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"181":{"tf":1.0},"191":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"108":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"176":{"tf":1.0},"190":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"237":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":49,"docs":{"100":{"tf":2.0},"108":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"237":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}},"f":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"227":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"184":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":20,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"238":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.4142135623730951},"7":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}},"o":{"d":{"df":6,"docs":{"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":12,"docs":{"161":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"106":{"tf":2.23606797749979},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"221":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"237":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"228":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"102":{"tf":1.0},"222":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"81":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"135":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"4":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":12,"docs":{"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"225":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"192":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{":":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"237":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}},"u":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":67,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"231":{"tf":1.4142135623730951},"235":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"72":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"77":{"tf":1.7320508075688772},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"225":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":121,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":4,"docs":{"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"p":{"(":{"$":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"118":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.0},"221":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"15":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"228":{"tf":1.4142135623730951}}}},"s":{"df":6,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"148":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.6457513110645907},"197":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0}},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"a":{"df":1,"docs":{"148":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"df":1,"docs":{"140":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"186":{"tf":1.0},"50":{"tf":1.0}}},"y":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"165":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"178":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}},"t":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"235":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.0},"81":{"tf":1.0}}}}}},"q":{"df":1,"docs":{"230":{"tf":1.0}}},"r":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}},"w":{"df":4,"docs":{"11":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":2.23606797749979}}},"l":{"df":4,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"197":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":4,"docs":{"1":{"tf":1.0},"234":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"238":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"x":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"223":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":8,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"218":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":3.7416573867739413},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.0}},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"183":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.6457513110645907},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"209":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"59":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0}}}}}},"df":5,"docs":{"107":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"94":{"tf":1.0}},"i":{"df":4,"docs":{"220":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"_":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"176":{"tf":1.0}},"e":{">":{"(":{"[":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"140":{"tf":1.0},"176":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"238":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"’":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"235":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"g":{"a":{"df":21,"docs":{"0":{"tf":1.7320508075688772},"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":2.23606797749979},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"p":{"df":3,"docs":{"74":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"154":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"160":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"c":{"d":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"140":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"35":{"tf":2.0},"42":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"108":{"tf":1.0},"238":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":13,"docs":{"101":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}},"l":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"223":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"o":{"d":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"81":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"221":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"77":{"tf":2.23606797749979},"81":{"tf":2.6457513110645907},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"224":{"tf":1.0},"4":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"221":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"221":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":1,"docs":{"55":{"tf":1.0}}},"l":{"df":4,"docs":{"178":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"100":{"tf":1.0},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"df":14,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"17":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"201":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.0},"36":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":2,"docs":{"149":{"tf":1.0},"93":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"d":{"df":4,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"190":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"1":{"2":{"8":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":22,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"2":{"5":{"6":{"df":85,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":2.8284271247461903},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":8,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"204":{"tf":2.23606797749979},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"5":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":13,"docs":{"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"d":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"147":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.4142135623730951},"226":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":2.449489742783178},"6":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":2,"docs":{"19":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":11,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"191":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"102":{"tf":1.0},"130":{"tf":1.0},"157":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"18":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"208":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"145":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":2.23606797749979},"200":{"tf":1.0},"232":{"tf":1.4142135623730951},"4":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"201":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}},"1":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":14,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"223":{"tf":1.0},"228":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"63":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"225":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"97":{"tf":1.0}},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"54":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"202":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"222":{"tf":1.0},"25":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":10,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":7,"docs":{"176":{"tf":1.0},"199":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"r":{"a":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"139":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"102":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"s":{"c":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":36,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"’":{"df":6,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"65":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"134":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}},"r":{"df":7,"docs":{"197":{"tf":2.23606797749979},"201":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}}},"’":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"236":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"s":{"df":1,"docs":{"20":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"k":{"b":{"df":2,"docs":{"59":{"tf":1.0},"84":{"tf":1.0}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"86":{"tf":1.0}}}}},"v":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"142":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"40":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"237":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"72":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"225":{"tf":1.0},"34":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"101":{"tf":1.0},"200":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"23":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":2.6457513110645907},"66":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"226":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"235":{"tf":1.0},"42":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"77":{"tf":1.4142135623730951},"96":{"tf":1.0}},"r":{"df":3,"docs":{"107":{"tf":1.0},"193":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.0},"136":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":2.449489742783178},"73":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"217":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"12":{"tf":2.0},"176":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.1622776601683795},"35":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"175":{"tf":1.0},"19":{"tf":3.4641016151377544},"205":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":2.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"’":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"237":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"235":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":26,"docs":{"106":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}},"df":4,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":5,"docs":{"19":{"tf":3.605551275463989},"227":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\\"":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"157":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"’":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"182":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}},"l":{"d":{"df":3,"docs":{"228":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"2":{"2":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":24,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":3.0},"238":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"73":{"tf":2.449489742783178},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"’":{"df":3,"docs":{"83":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":12,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":4,"docs":{"175":{"tf":1.0},"183":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"0":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{">":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"209":{"tf":1.0}}}},"df":4,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"57":{"tf":2.23606797749979},"95":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"24":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"197":{"tf":3.4641016151377544},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":2.8284271247461903}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}},"w":{"df":9,"docs":{"141":{"tf":1.0},"179":{"tf":1.4142135623730951},"237":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"125":{"tf":1.0}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.0},"238":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"24":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":17,"docs":{"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"223":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"225":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":11,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"221":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"119":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":2.0},"97":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"178":{"tf":1.0},"196":{"tf":1.4142135623730951},"225":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"203":{"tf":1.0},"42":{"tf":1.0}}}}}}},"y":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"180":{"tf":1.7320508075688772},"42":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"70":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":4,"docs":{"178":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.8284271247461903},"59":{"tf":1.0},"72":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"153":{"tf":1.4142135623730951},"197":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}},"n":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"100":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"u":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}},"x":{"4":{"0":{"df":4,"docs":{"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"^":{"1":{"2":{"8":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"3":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"137":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":9,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"l":{"df":9,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"66":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.4142135623730951}},"o":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"35":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"221":{"tf":1.0},"238":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"237":{"tf":1.0},"76":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"149":{"tf":2.0},"42":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}},"0":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}},"x":{"4":{"0":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"2":{"df":1,"docs":{"178":{"tf":1.0}}},"4":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"179":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"113":{"tf":1.0},"133":{"tf":1.0},"180":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{">":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":78,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"221":{"tf":1.4142135623730951},"4":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"209":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":12,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":2,"docs":{"115":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"w":{"df":12,"docs":{"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":18,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"136":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"204":{"tf":1.0},"28":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"9":{"tf":1.0}}}},"df":10,"docs":{"197":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"55":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"124":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":102,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":80,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"h":{"df":1,"docs":{"200":{"tf":1.0}}}},"w":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"20":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"226":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":2.0},"158":{"tf":1.7320508075688772},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"o":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"69":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":8,"docs":{"0":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":1.0}}}}}}},"k":{"(":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":3,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"16":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"(":{"a":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"84":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":112,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":23,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":28,"docs":{"12":{"tf":3.3166247903554},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"83":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0},"221":{"tf":1.4142135623730951},"53":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"145":{"tf":2.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"41":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"187":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.0},"57":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":3,"docs":{"237":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"216":{"tf":1.7320508075688772},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"221":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"238":{"tf":1.0},"77":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"z":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"w":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"2":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.7320508075688772},"223":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"226":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"182":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0}}}}}}}}},"df":4,"docs":{"216":{"tf":2.23606797749979},"66":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"191":{"tf":1.0},"80":{"tf":2.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":3,"docs":{"77":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"5":{"tf":1.0},"71":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"t":{"df":4,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"175":{"tf":2.0},"223":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"12":{"tf":1.0},"234":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"17":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.7320508075688772},"52":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"237":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"107":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"148":{"tf":1.0},"198":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"168":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":16,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"200":{"tf":1.0},"224":{"tf":1.7320508075688772},"237":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"153":{"tf":1.0},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"36":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"136":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"153":{"tf":1.0},"17":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"224":{"tf":1.0},"42":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"182":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"137":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"218":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"221":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0}},"’":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"238":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":7,"docs":{"54":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"178":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"77":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":2,"docs":{"178":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"d":{"df":11,"docs":{"182":{"tf":1.0},"19":{"tf":2.23606797749979},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":74,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"6":{"1":{"4":{"4":{"/":{"3":{"1":{"4":{"5":{"7":{"2":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":106,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"32":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"65":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":9,"docs":{"107":{"tf":1.0},"158":{"tf":1.0},"180":{"tf":1.7320508075688772},"187":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"161":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"10":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"237":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"197":{"tf":1.0},"41":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"234":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":5,"docs":{"77":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"197":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":2.23606797749979},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"201":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"14":{"tf":1.0},"176":{"tf":1.7320508075688772},"195":{"tf":1.0},"221":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"x":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":2,"docs":{"19":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"238":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"202":{"tf":1.0},"238":{"tf":1.0},"68":{"tf":1.0}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":7,"docs":{"236":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"70":{"tf":1.7320508075688772},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"r":{"df":12,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"227":{"tf":1.0}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":30,"docs":{"10":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"4":{"tf":2.0},"5":{"tf":2.0},"52":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"v":{"df":6,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"34":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"187":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"48":{"tf":1.0}},"s":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.0},"187":{"tf":1.7320508075688772},"192":{"tf":1.0},"200":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":2.23606797749979},"212":{"tf":1.0},"213":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":20,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"48":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"v":{"df":40,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":2.23606797749979},"223":{"tf":1.0},"225":{"tf":2.8284271247461903},"226":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"78":{"tf":1.0}}}}}}},"h":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"s":{"c":{"df":8,"docs":{"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"225":{"tf":1.0}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"92":{"tf":1.0}}}}}},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"100":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"39":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":18,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":15,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"59":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":8,"docs":{"229":{"tf":1.4142135623730951},"237":{"tf":1.0},"54":{"tf":2.8284271247461903},"56":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}}}}},"v":{"6":{"4":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}},"m":{"a":{"c":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"107":{"tf":1.0},"238":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":2.0}}}},"m":{"df":0,"docs":{},"e":{"df":24,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":3,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.0},"89":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}},"c":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"140":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.7320508075688772}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"115":{"tf":1.0}}}},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":1,"docs":{"12":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"238":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"131":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":21,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"188":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"178":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.0},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"195":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"159":{"tf":1.7320508075688772},"167":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"131":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"t":{"df":13,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"128":{"tf":1.0}}}},"h":{"a":{"1":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"92":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"69":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772}}}}},"l":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"122":{"tf":1.0},"77":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}},"w":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"117":{"tf":2.0},"124":{"tf":2.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"$":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"237":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":1,"docs":{"225":{"tf":1.0}},"f":{"df":4,"docs":{"110":{"tf":1.0},"177":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":2.8284271247461903},"78":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"221":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":6,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":2.449489742783178},"15":{"tf":2.449489742783178},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":2.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"113":{"tf":1.0},"199":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"3":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"180":{"tf":1.0},"181":{"tf":2.6457513110645907},"182":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"127":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"183":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"221":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"c":{"df":23,"docs":{"11":{"tf":1.0},"16":{"tf":2.0},"19":{"tf":2.23606797749979},"224":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"d":{"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":2.23606797749979},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.0},"238":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"4":{"tf":2.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":3,"docs":{"84":{"tf":2.0},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":43,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"35":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"100":{"tf":1.0},"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":4,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"1":{"tf":1.0},"221":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":1,"docs":{"180":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"a":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":12,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"181":{"tf":1.0}}},"1":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}}},"2":{"df":1,"docs":{"181":{"tf":1.0}}},"3":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"222":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":9,"docs":{"0":{"tf":1.0},"106":{"tf":1.4142135623730951},"14":{"tf":2.6457513110645907},"224":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":10,"docs":{"140":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"231":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"221":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"58":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"r":{"df":3,"docs":{"192":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"195":{"tf":1.0}}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"211":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"206":{"tf":1.0}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{">":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":3,"docs":{"225":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"85":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"101":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"193":{"tf":1.7320508075688772},"217":{"tf":2.23606797749979},"66":{"tf":1.0}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}}},"u":{"b":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"109":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"19":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":21,"docs":{"19":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"100":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"178":{"tf":1.4142135623730951},"226":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":2.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"73":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":109,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":3,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"68":{"tf":1.0}},"n":{"df":4,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.23606797749979},"4":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"223":{"tf":2.6457513110645907},"225":{"tf":3.4641016151377544},"226":{"tf":3.0},"228":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"84":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"4":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"’":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"77":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":13,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"u":{"df":5,"docs":{"19":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"140":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":2.8284271247461903},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"102":{"tf":1.0},"151":{"tf":2.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"df":3,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"37":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"223":{"tf":1.0},"64":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":7,"docs":{"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"235":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}}}},"p":{"df":2,"docs":{"107":{"tf":1.0},"28":{"tf":1.0}},"i":{"c":{"_":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"149":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"57":{"tf":2.0},"59":{"tf":3.0}}},"k":{"df":9,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"226":{"tf":1.0},"45":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"203":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":2.23606797749979}}}}},"t":{"df":2,"docs":{"113":{"tf":1.0},"176":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"77":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"0":{"tf":1.0},"114":{"tf":1.4142135623730951},"187":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"71":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}},"p":{"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"n":{"c":{"(":{"b":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"a":{",":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"6":{"4":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"137":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"83":{"tf":1.4142135623730951}},"→":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":13,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":3,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":91,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":3.7416573867739413},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.8284271247461903},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"217":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"210":{"tf":1.0},"214":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"224":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"223":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"214":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"42":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.0},"64":{"tf":1.7320508075688772}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"72":{"tf":1.0}}}},"df":54,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"192":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}}},"v":{"0":{".":{"8":{".":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":53,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"3":{"df":18,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"4":{"df":9,"docs":{"119":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}},"5":{"df":11,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}},"6":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0}}},"7":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0}}},"8":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"102":{"tf":1.0},"110":{"tf":1.7320508075688772},"191":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":11,"docs":{"12":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":66,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":2.449489742783178},"196":{"tf":3.0},"197":{"tf":3.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"1":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"’":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.0},"99":{"tf":1.0}}}}},"df":2,"docs":{"12":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}}}}},"df":11,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"e":{"c":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"191":{"tf":1.0},"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"157":{"tf":1.0},"231":{"tf":2.0},"234":{"tf":2.0},"24":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"a":{"df":24,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"28":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"221":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":4,"docs":{"221":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"y":{"df":4,"docs":{"196":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"225":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"’":{"d":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"137":{"tf":1.0}},"n":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":21,"docs":{"101":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"95":{"tf":1.0}}},"r":{"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"170":{"tf":1.0},"182":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"’":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"0":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":20,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"217":{"tf":2.0},"5":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"89":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"236":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"x":{"8":{"6":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"y":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":19,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"z":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"161":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"138":{"tf":1.0}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"breadcrumbs":{"root":{"0":{".":{"7":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":29,"docs":{"114":{"tf":2.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772}},"x":{"0":{"0":{".":{".":{"0":{"df":0,"docs":{},"x":{"3":{"df":0,"docs":{},"f":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"8":{"c":{"3":{"7":{"9":{"a":{"0":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951}}},"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":4,"docs":{"109":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"84":{"tf":1.0}}},"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"4":{"0":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"107":{"tf":1.0},"216":{"tf":1.0}}},"2":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"e":{"4":{"8":{"7":{"b":{"7":{"1":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"7":{"df":0,"docs":{},"f":{"df":1,"docs":{"107":{"tf":1.0}}}},"8":{"0":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"102":{"tf":1.0},"109":{"tf":2.0},"169":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"216":{"tf":1.0}}}}}},"a":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}},"–":{"3":{"1":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"0":{"5":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"/":{"1":{"0":{"0":{"df":1,"docs":{"221":{"tf":1.0}}},"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"77":{"tf":1.0}}},"1":{",":{"4":{"4":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"77":{"tf":1.0}}},"2":{"8":{"df":0,"docs":{},"k":{"b":{"df":3,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"217":{"tf":1.0},"77":{"tf":1.4142135623730951}}},"3":{"1":{",":{"0":{"7":{"2":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"5":{"9":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"89":{"tf":1.0}}},"6":{"df":1,"docs":{"80":{"tf":1.0}}},"7":{",":{"0":{"2":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}},"8":{",":{"0":{"5":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":18,"docs":{"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"203":{"tf":1.0},"221":{"tf":1.0},"41":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"77":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"f":{"d":{"6":{"0":{"6":{"3":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"–":{"4":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"2":{",":{"2":{"0":{"5":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"0":{".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"2":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":3,"docs":{"80":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"2":{"4":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"5":{"6":{"6":{"6":{"9":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"2":{"5":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"235":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"6":{"df":20,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"6":{"3":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"^":{"1":{"6":{"0":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{"df":4,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.0},"81":{"tf":1.0}}}},"df":7,"docs":{"12":{"tf":1.0},"221":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}},"3":{",":{"7":{"4":{"8":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"84":{"tf":1.0}}},"2":{"/":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"6":{"6":{"9":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"149":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"217":{"tf":1.7320508075688772},"41":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}},"3":{",":{"0":{"8":{"7":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"19":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"93":{"tf":1.0}},"f":{"a":{"4":{"df":0,"docs":{},"f":{"2":{"4":{"5":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"8":{"4":{"4":{"8":{"3":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"5":{"8":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"9":{"4":{"8":{"3":{"6":{"0":{"9":{"6":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{",":{"0":{"5":{"2":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"3":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"209":{"tf":1.0},"218":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"5":{"1":{".":{"7":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{",":{"6":{"3":{"4":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"92":{"tf":1.0}}},"5":{"1":{"0":{"6":{"1":{"5":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{",":{"5":{"2":{"6":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}},"6":{",":{"2":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"/":{"6":{"4":{"df":2,"docs":{"0":{"tf":1.0},"39":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":5,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"7":{",":{"3":{"7":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"3":{"0":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":1,"docs":{"77":{"tf":1.0}}},"8":{",":{"7":{"2":{"6":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{",":{"8":{"4":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"5":{"2":{"0":{"9":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0}}},"_":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"216":{"tf":1.0},"35":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.0},"41":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"195":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"196":{"tf":1.0},"61":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"149":{"tf":1.0},"184":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"21":{"tf":1.0},"93":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"202":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}},"v":{"df":3,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"6":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"0":{"df":2,"docs":{"111":{"tf":1.0},"191":{"tf":1.0}}},"1":{"df":1,"docs":{"201":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"3":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"195":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"208":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"17":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"150":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"35":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"i":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.8284271247461903}},"m":{"df":4,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"106":{"tf":1.0},"181":{"tf":1.4142135623730951}},"s":{"df":3,"docs":{"66":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}},"o":{"c":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"221":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":10,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"80":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"183":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0}},"i":{"df":27,"docs":{"106":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"z":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":2,"docs":{"101":{"tf":1.0},"119":{"tf":1.4142135623730951}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":110,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"221":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"’":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"p":{"df":1,"docs":{"237":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"190":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"5":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"32":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"45":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"_":{"0":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"176":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"32":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"58":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"216":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.0}}}}}}}},"m":{"df":1,"docs":{"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"235":{"tf":1.0},"54":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"181":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"221":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"17":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"17":{"tf":1.0},"232":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.7320508075688772},"84":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"214":{"tf":1.0},"216":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"45":{"tf":1.0},"52":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"221":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"150":{"tf":1.0},"41":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"15":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"52":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"182":{"tf":1.0},"38":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"85":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"12":{"tf":1.0},"204":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"222":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"102":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"225":{"tf":1.0},"68":{"tf":1.0}},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"101":{"tf":1.0},"218":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"148":{"tf":1.0},"184":{"tf":1.0},"202":{"tf":1.0},"237":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"118":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"102":{"tf":1.0},"155":{"tf":2.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"93":{"tf":1.0}},"e":{"=":{"1":{"0":{"3":{"0":{"6":{"3":{"/":{"1":{"5":{"7":{"2":{"8":{"6":{"4":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":2,"docs":{"12":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"197":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"197":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"221":{"tf":1.0},"237":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"103":{"tf":1.0},"140":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"37":{"tf":1.0},"52":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"186":{"tf":1.0},"223":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"106":{"tf":1.7320508075688772},"168":{"tf":1.0},"178":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"196":{"tf":1.0},"218":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"227":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"1":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"20":{"tf":1.0}}},"t":{"df":35,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.4142135623730951},"41":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":5,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"225":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"156":{"tf":2.0},"51":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"19":{"tf":1.7320508075688772},"238":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"157":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"176":{"tf":1.0},"197":{"tf":2.8284271247461903},"201":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"134":{"tf":1.0},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"107":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.4142135623730951},"37":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":12,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.0},"216":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"214":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":6,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"15":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"g":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"84":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"234":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"d":{"df":9,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":2.449489742783178},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":2.0},"73":{"tf":2.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"73":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}},"v":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"188":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":49,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":2.6457513110645907},"131":{"tf":2.449489742783178},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"84":{"tf":2.6457513110645907},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"102":{"tf":1.0},"204":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"189":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"102":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"225":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"161":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"102":{"tf":1.0},"162":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":2.23606797749979},"181":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":2.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"203":{"tf":1.0},"206":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"205":{"tf":1.0}}}},"r":{"df":7,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":2.23606797749979},"207":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"’":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"102":{"tf":1.0},"144":{"tf":2.0},"77":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"161":{"tf":1.0},"162":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":0,"docs":{},"x":{"4":{"0":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}},"i":{"c":{"df":3,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"96":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"64":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"d":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":8,"docs":{"101":{"tf":1.0},"19":{"tf":2.0},"196":{"tf":3.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"206":{"tf":1.0},"226":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"a":{"3":{"8":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"105":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"153":{"tf":1.0},"221":{"tf":1.4142135623730951},"37":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"147":{"tf":2.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":13,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"167":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"234":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":2,"docs":{"63":{"tf":1.0},"65":{"tf":1.4142135623730951}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"179":{"tf":1.0}},"i":{"df":3,"docs":{"149":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"d":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}},"r":{"df":2,"docs":{"119":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"11":{"tf":2.23606797749979},"19":{"tf":1.0},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"223":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"11":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"z":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"136":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"102":{"tf":1.0},"185":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"216":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":3.3166247903554},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"106":{"tf":1.0},"178":{"tf":1.4142135623730951},"197":{"tf":1.0},"204":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":5,"docs":{"102":{"tf":1.0},"164":{"tf":2.0},"37":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"150":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"225":{"tf":1.4142135623730951},"5":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"223":{"tf":1.0},"55":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.0},"66":{"tf":2.0}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"119":{"tf":1.0},"140":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":8,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"196":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"t":{"df":10,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"25":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":65,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":4,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.4142135623730951}}}}}},"t":{"df":4,"docs":{"11":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}},"x":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}},"s":{"df":2,"docs":{"13":{"tf":1.0},"54":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"226":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"172":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"101":{"tf":1.0},"195":{"tf":2.23606797749979},"197":{"tf":3.3166247903554},"201":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"220":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.7320508075688772},"31":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"19":{"tf":1.0},"192":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":12,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"221":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"102":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"37":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"214":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"201":{"tf":1.0},"3":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.0},"199":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"0":{"tf":2.0},"106":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":2.23606797749979},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"34":{"tf":2.449489742783178},"35":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"72":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"’":{"df":4,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"14":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"228":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}},"t":{"df":2,"docs":{"101":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"102":{"tf":1.0},"131":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":13,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"93":{"tf":1.0},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"df":3,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"118":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"182":{"tf":1.0},"45":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"136":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"66":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":2,"docs":{"140":{"tf":1.0},"60":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"64":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"163":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"226":{"tf":1.0},"45":{"tf":2.0},"64":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"102":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"2":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"202":{"tf":1.0},"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"176":{"tf":1.0},"202":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":30,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"a":{"2":{"8":{"c":{"4":{"c":{"1":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"218":{"tf":1.0},"238":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":7,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"188":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":23,"docs":{"163":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"217":{"tf":2.449489742783178},"225":{"tf":1.4142135623730951},"37":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"102":{"tf":1.0},"172":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}}}},"s":{"df":4,"docs":{"102":{"tf":1.0},"173":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"’":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}},"b":{"c":{"df":0,"docs":{},"f":{"c":{"9":{"2":{"1":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}},"’":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":11,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":2.0},"27":{"tf":1.0},"32":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"19":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}},"s":{"df":5,"docs":{"221":{"tf":1.0},"237":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"109":{"tf":1.0},"171":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"192":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"140":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":2.0}},"l":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.0},"210":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"196":{"tf":2.23606797749979},"28":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}},"i":{"df":1,"docs":{"54":{"tf":1.0}},"n":{"df":5,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"102":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"215":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"183":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"64":{"tf":3.0},"70":{"tf":1.0},"73":{"tf":2.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":12,"docs":{"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":3.3166247903554},"207":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":2.0},"45":{"tf":2.23606797749979},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"204":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":2,"docs":{"100":{"tf":1.0},"101":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":106,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.7320508075688772}}}},"r":{"df":2,"docs":{"33":{"tf":1.0},"55":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"t":{"df":7,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"137":{"tf":2.23606797749979},"138":{"tf":1.7320508075688772},"139":{"tf":2.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"226":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"42":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"101":{"tf":1.0},"168":{"tf":1.0},"209":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"140":{"tf":1.0},"208":{"tf":1.0},"70":{"tf":1.0}}}}}}}}}}},"v":{"df":2,"docs":{"55":{"tf":1.0},"64":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":178,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":1.0},"12":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"225":{"tf":3.1622776601683795},"226":{"tf":2.23606797749979},"37":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"153":{"tf":2.23606797749979},"49":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"r":{"df":3,"docs":{"17":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"137":{"tf":1.0},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"45":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"196":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"176":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"73":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"114":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"216":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"66":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"3":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"df":1,"docs":{"0":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":9,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"231":{"tf":1.0},"41":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"81":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":1,"docs":{"237":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}},"n":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"r":{"df":3,"docs":{"20":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"183":{"tf":1.0},"236":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.7320508075688772},"224":{"tf":1.0},"45":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"181":{"tf":1.0},"191":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":7,"docs":{"174":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"15":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":8,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"108":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"176":{"tf":1.0},"190":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"237":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":49,"docs":{"100":{"tf":2.0},"108":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"160":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"237":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}},"f":{"df":5,"docs":{"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"220":{"tf":1.0},"227":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"149":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"184":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"t":{"df":20,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"238":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"213":{"tf":1.0},"59":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"228":{"tf":1.7320508075688772},"7":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":26,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"194":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}},"o":{"d":{"df":6,"docs":{"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":12,"docs":{"161":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"106":{"tf":2.23606797749979},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"54":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"221":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"191":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"237":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"228":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"102":{"tf":1.0},"222":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"129":{"tf":1.4142135623730951},"81":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"137":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"135":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"4":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"1":{"1":{"5":{"5":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"df":3,"docs":{"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":12,"docs":{"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"225":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"192":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{":":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"237":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":6,"docs":{"140":{"tf":1.0},"148":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.4142135623730951}},"t":{"df":3,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}},"u":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":79,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":2.23606797749979},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":2.6457513110645907},"231":{"tf":1.7320508075688772},"235":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"77":{"tf":1.7320508075688772},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"178":{"tf":1.0},"225":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":121,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"114":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":1,"docs":{"54":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":4,"docs":{"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"p":{"(":{"$":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"118":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"225":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.0},"221":{"tf":1.7320508075688772},"54":{"tf":1.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"13":{"tf":1.0},"28":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.0}}}},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"15":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"228":{"tf":1.4142135623730951}}}},"s":{"df":6,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"222":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":19,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":1.0},"148":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.8284271247461903},"197":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"167":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"176":{"tf":1.0},"192":{"tf":1.0}},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"a":{"df":1,"docs":{"148":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"df":1,"docs":{"140":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"131":{"tf":1.0},"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"186":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"186":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"165":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"131":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"178":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}},"t":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"84":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"176":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"221":{"tf":1.0},"45":{"tf":1.0},"85":{"tf":1.0}}},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"45":{"tf":1.0},"81":{"tf":1.0}}}}}},"q":{"df":7,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"221":{"tf":1.0},"4":{"tf":1.0}}}}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}},"w":{"df":4,"docs":{"11":{"tf":1.0},"25":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"28":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":2.23606797749979}}},"l":{"df":4,"docs":{"118":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"197":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"69":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0}}}},"d":{"df":4,"docs":{"1":{"tf":1.0},"234":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"238":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"x":{"df":8,"docs":{"0":{"tf":1.4142135623730951},"223":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"59":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"78":{"tf":2.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":8,"docs":{"168":{"tf":1.0},"178":{"tf":1.0},"218":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.0}},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"183":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"24":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"19":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"23":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"101":{"tf":1.0},"119":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"203":{"tf":2.6457513110645907},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"209":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":14,"docs":{"143":{"tf":1.0},"146":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"59":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0}}}}}},"df":5,"docs":{"107":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"168":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"35":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"94":{"tf":1.0}},"i":{"df":4,"docs":{"220":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"n":{"c":{"_":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"176":{"tf":1.4142135623730951}},"e":{">":{"(":{"[":{"$":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"140":{"tf":1.0},"176":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"238":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.0},"99":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"’":{"df":2,"docs":{"176":{"tf":1.0},"200":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"235":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":4,"docs":{"77":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"g":{"a":{"df":21,"docs":{"0":{"tf":1.7320508075688772},"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":2.449489742783178},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"182":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.0},"39":{"tf":2.0},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"p":{"df":3,"docs":{"74":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"154":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"160":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"75":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"c":{"d":{"df":2,"docs":{"77":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"18":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":22,"docs":{"140":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"35":{"tf":2.0},"42":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"80":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"108":{"tf":1.0},"238":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":13,"docs":{"101":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"207":{"tf":1.0},"238":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}},"l":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}},"e":{"df":2,"docs":{"223":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"o":{"d":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"87":{"tf":1.0},"99":{"tf":1.0}}}},"w":{"df":1,"docs":{"15":{"tf":1.0}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"221":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"77":{"tf":2.23606797749979},"81":{"tf":2.8284271247461903},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":222,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"221":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":8,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"221":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":1,"docs":{"55":{"tf":1.0}}},"l":{"df":4,"docs":{"178":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":20,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"19":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"100":{"tf":1.0},"2":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":3,"docs":{"15":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"df":14,"docs":{"0":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"15":{"tf":2.6457513110645907},"17":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"72":{"tf":2.23606797749979},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"p":{"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"216":{"tf":1.0},"225":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"201":{"tf":1.0},"220":{"tf":1.0},"234":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"x":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"216":{"tf":1.0},"218":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":9,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.0},"36":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}},"i":{"df":2,"docs":{"149":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.0},"97":{"tf":1.0}}}}},"l":{"d":{"df":4,"docs":{"113":{"tf":1.0},"123":{"tf":1.0},"190":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"d":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"222":{"tf":1.7320508075688772},"228":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"1":{"2":{"8":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":22,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"113":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}},"df":19,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"2":{"5":{"6":{"df":85,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":2.8284271247461903},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":8,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"204":{"tf":2.23606797749979},"205":{"tf":2.23606797749979},"206":{"tf":2.23606797749979},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"5":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":13,"docs":{"101":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"119":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}},"d":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"191":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"35":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"147":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.4142135623730951},"226":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"119":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.0}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"54":{"tf":2.449489742783178},"6":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":2.23606797749979},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":2,"docs":{"19":{"tf":1.0},"42":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"234":{"tf":1.0},"238":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}}},"n":{"a":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"14":{"tf":1.0},"15":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":11,"docs":{"100":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"206":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"235":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"191":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"130":{"tf":1.0},"157":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"84":{"tf":1.0},"99":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"18":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"100":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.7320508075688772},"208":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"145":{"tf":1.0},"222":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.7320508075688772},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"19":{"tf":2.23606797749979},"200":{"tf":1.0},"232":{"tf":1.7320508075688772},"4":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"201":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"198":{"tf":1.0},"199":{"tf":1.0}}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.0}}},"1":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":14,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":10,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"10":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"6":{"tf":2.0},"63":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":2.0},"9":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"225":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"225":{"tf":1.0},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"(":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"2":{"5":{"6":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"97":{"tf":1.0}},"r":{"df":10,"docs":{"21":{"tf":2.0},"22":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"23":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"202":{"tf":1.4142135623730951},"222":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":10,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":7,"docs":{"176":{"tf":1.0},"199":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"r":{"a":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"139":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"102":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"83":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"176":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"19":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"s":{"c":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{".":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":145,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"28":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":2.449489742783178},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"’":{"df":6,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"172":{"tf":1.0},"194":{"tf":1.0},"209":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"19":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"65":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}},"r":{"df":7,"docs":{"197":{"tf":2.23606797749979},"201":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"100":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}}},"’":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"236":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"s":{"df":1,"docs":{"20":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"13":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"k":{"b":{"df":2,"docs":{"59":{"tf":1.0},"84":{"tf":1.0}}},"df":3,"docs":{"123":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0}},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"86":{"tf":1.0}}}}},"v":{"0":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"141":{"tf":1.4142135623730951},"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"142":{"tf":1.4142135623730951}},"e":{"(":{"$":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"102":{"tf":1.0},"140":{"tf":1.4142135623730951},"40":{"tf":1.0},"77":{"tf":1.7320508075688772},"85":{"tf":2.0},"89":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"77":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"237":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"72":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"141":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"225":{"tf":1.0},"34":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"86":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"101":{"tf":1.0},"200":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"15":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"178":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"23":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":2.6457513110645907},"66":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"226":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"235":{"tf":1.4142135623730951},"42":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"17":{"tf":1.0},"77":{"tf":1.4142135623730951},"96":{"tf":1.0}},"r":{"df":3,"docs":{"107":{"tf":1.0},"193":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"75":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"42":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"0":{"tf":1.0},"136":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}},"v":{"df":8,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":2.6457513110645907},"73":{"tf":1.0},"77":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":1,"docs":{"84":{"tf":1.0}},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"101":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":2.449489742783178},"211":{"tf":2.0},"212":{"tf":2.0},"217":{"tf":2.23606797749979},"89":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"119":{"tf":1.0},"84":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":17,"docs":{"12":{"tf":2.23606797749979},"176":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":3.1622776601683795},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"175":{"tf":1.0},"19":{"tf":3.4641016151377544},"205":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":2.449489742783178},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.0}}},"y":{"df":0,"docs":{},"’":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"237":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"235":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":26,"docs":{"106":{"tf":1.0},"140":{"tf":1.4142135623730951},"149":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0}}}},"df":13,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"66":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":5,"docs":{"19":{"tf":3.7416573867739413},"227":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"220":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\\"":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"175":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"157":{"tf":1.0},"191":{"tf":1.0},"200":{"tf":1.0},"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"’":{"df":1,"docs":{"109":{"tf":1.0}}}}},"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"178":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"182":{"tf":1.0},"221":{"tf":1.0},"37":{"tf":1.0},"64":{"tf":1.0}}}}},"l":{"d":{"df":3,"docs":{"228":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}},"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"2":{"2":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":24,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"228":{"tf":3.0},"238":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"73":{"tf":2.6457513110645907},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0}},"’":{"df":3,"docs":{"83":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}},"o":{"a":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":12,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.4142135623730951},"193":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0}}},"t":{"df":4,"docs":{"175":{"tf":1.0},"183":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"0":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{">":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"df":4,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"57":{"tf":2.449489742783178},"95":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"24":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"99":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":8,"docs":{"197":{"tf":3.4641016151377544},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":2.8284271247461903}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"t":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}},"w":{"df":9,"docs":{"141":{"tf":1.0},"179":{"tf":1.4142135623730951},"237":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"125":{"tf":1.4142135623730951}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}},"o":{"df":1,"docs":{"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"66":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"221":{"tf":1.0},"238":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"32":{"tf":1.0},"68":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"24":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":17,"docs":{"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"223":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":4,"docs":{"41":{"tf":1.0},"5":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"237":{"tf":1.0}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"225":{"tf":1.0},"45":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":11,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"221":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"183":{"tf":1.7320508075688772}},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"100":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"119":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":2.0},"97":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"178":{"tf":1.0},"196":{"tf":1.4142135623730951},"225":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"203":{"tf":1.0},"42":{"tf":1.0}}}}}}},"y":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"180":{"tf":2.0},"42":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"42":{"tf":1.0},"66":{"tf":1.0},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"105":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"70":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":4,"docs":{"178":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":3,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"180":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":2.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"168":{"tf":1.7320508075688772},"17":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.0},"59":{"tf":1.0},"72":{"tf":2.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"89":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"99":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"153":{"tf":1.4142135623730951},"197":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"15":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":1,"docs":{"84":{"tf":1.0}},"n":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":1,"docs":{"100":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"u":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"78":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}}}},"0":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.0}},"x":{"4":{"0":{"df":4,"docs":{"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"^":{"1":{"2":{"8":{"df":2,"docs":{"80":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"5":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"168":{"tf":1.0}}},"3":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"137":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":9,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":7,"docs":{"13":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"l":{"df":9,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"45":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"54":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"80":{"tf":1.0}}}},"df":3,"docs":{"66":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.7320508075688772}},"o":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}},"u":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"11":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"176":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"35":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"221":{"tf":1.0},"238":{"tf":1.0},"25":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"237":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"221":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"149":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}},"0":{"df":4,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}},"x":{"4":{"0":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"178":{"tf":1.0}}},"2":{"df":1,"docs":{"178":{"tf":1.0}}},"4":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}},"8":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"179":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}},"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"4":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"(":{"$":{"a":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"101":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"80":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"113":{"tf":1.0},"133":{"tf":1.0},"180":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":2.0},"7":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{">":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":78,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"191":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":3.3166247903554},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"81":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":10,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"221":{"tf":1.4142135623730951},"4":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"209":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":12,"docs":{"105":{"tf":1.0},"19":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":2,"docs":{"115":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"w":{"df":12,"docs":{"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"223":{"tf":1.0},"45":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":149,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":2.23606797749979},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"28":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"20":{"tf":1.0},"227":{"tf":1.0},"9":{"tf":1.0}}}},"df":10,"docs":{"197":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"55":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"89":{"tf":1.0},"94":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":19,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"124":{"tf":1.0},"166":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":102,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"237":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":80,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"h":{"df":1,"docs":{"200":{"tf":1.0}}}},"w":{"df":2,"docs":{"77":{"tf":1.0},"93":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":2.23606797749979},"9":{"tf":1.4142135623730951}}},"x":{"df":1,"docs":{"20":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"226":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":2.23606797749979},"158":{"tf":1.7320508075688772},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"45":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"o":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"221":{"tf":1.0}}}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":8,"docs":{"0":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.0},"85":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"4":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"149":{"tf":1.0},"161":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":2.23606797749979},"187":{"tf":2.23606797749979},"188":{"tf":2.23606797749979},"189":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"87":{"tf":1.0}}}}}}},"k":{"(":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":3,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}},"df":26,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"16":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"180":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"(":{"a":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"184":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"233":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"100":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"84":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":112,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"101":{"tf":1.0}}}}}}}},"df":23,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":157,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":3.4641016151377544},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":2.23606797749979},"76":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":2.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"83":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"120":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"176":{"tf":1.0},"221":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"145":{"tf":2.23606797749979},"183":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":11,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"41":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"187":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":2.449489742783178},"86":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":3.1622776601683795},"57":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"5":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":3,"docs":{"237":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"216":{"tf":1.7320508075688772},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"221":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"238":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}},"z":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"w":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"2":{"0":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":2.23606797749979},"223":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"170":{"tf":1.0},"226":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.7320508075688772},"182":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"5":{"6":{"df":2,"docs":{"216":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"0":{"df":0,"docs":{},"x":{"1":{"1":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.4142135623730951}}}}}}}}},"df":4,"docs":{"216":{"tf":2.23606797749979},"66":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"191":{"tf":1.0},"80":{"tf":2.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}},"df":3,"docs":{"77":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"22":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"5":{"tf":1.0},"71":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":6,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"137":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"65":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":3.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"t":{"df":4,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"1":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"=":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"223":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"175":{"tf":2.0},"223":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"12":{"tf":1.0},"234":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"64":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"12":{"tf":1.0},"13":{"tf":2.0},"17":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.7320508075688772},"52":{"tf":1.0},"63":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"237":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":3,"docs":{"107":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.4142135623730951},"148":{"tf":1.0},"198":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"168":{"tf":1.0},"41":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"2":{"tf":1.7320508075688772},"219":{"tf":1.0},"222":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":16,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"’":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"200":{"tf":1.0},"224":{"tf":1.7320508075688772},"237":{"tf":1.0},"64":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"153":{"tf":1.0},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"36":{"tf":1.0},"70":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"136":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"221":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"153":{"tf":1.0},"17":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"64":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"101":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"224":{"tf":1.0},"42":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"131":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"182":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"97":{"tf":1.0},"99":{"tf":1.0}}}},"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":2.0},"137":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.7320508075688772},"181":{"tf":1.0},"218":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"238":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"221":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"95":{"tf":1.0}}},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0}},"’":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"228":{"tf":1.0},"237":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"238":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":7,"docs":{"54":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"178":{"tf":1.0},"77":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"77":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"225":{"tf":1.0},"81":{"tf":1.0}},"n":{"df":2,"docs":{"178":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"d":{"df":11,"docs":{"182":{"tf":1.0},"19":{"tf":2.23606797749979},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"82":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"205":{"tf":1.0},"92":{"tf":1.0}},"m":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"104":{"tf":1.0},"106":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"106":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":74,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"78":{"tf":1.0},"99":{"tf":1.0}}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"6":{"1":{"4":{"4":{"/":{"3":{"1":{"4":{"5":{"7":{"2":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":106,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"221":{"tf":1.0},"32":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"115":{"tf":1.0},"65":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":26,"docs":{"0":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":3.0},"222":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"28":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":9,"docs":{"107":{"tf":1.0},"158":{"tf":1.0},"180":{"tf":1.7320508075688772},"187":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"110":{"tf":1.0},"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"136":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"161":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":2,"docs":{"10":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"107":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"237":{"tf":1.0},"74":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"19":{"tf":1.0},"237":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"197":{"tf":1.0},"41":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"158":{"tf":1.0},"163":{"tf":1.0},"187":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"234":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"80":{"tf":1.0}},"t":{"df":5,"docs":{"77":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":5,"docs":{"197":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":131,"docs":{"100":{"tf":1.0},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"77":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":2.0},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":2.23606797749979},"197":{"tf":2.6457513110645907},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"201":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"14":{"tf":1.0},"176":{"tf":1.7320508075688772},"195":{"tf":1.0},"221":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0}}}}}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"42":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"x":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":2,"docs":{"19":{"tf":1.0},"84":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"238":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"202":{"tf":1.0},"238":{"tf":1.0},"68":{"tf":1.0}}},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"24":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"v":{"df":5,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"51":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":7,"docs":{"236":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"56":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"70":{"tf":2.0},"85":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"r":{"df":12,"docs":{"19":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"c":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"227":{"tf":1.0}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":60,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":2.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"v":{"df":6,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"140":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"100":{"tf":1.0},"34":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":2.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"71":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"187":{"tf":1.4142135623730951}}},"y":{"(":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"184":{"tf":1.0},"48":{"tf":1.0}},"s":{"df":2,"docs":{"102":{"tf":1.0},"163":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":2.0},"187":{"tf":1.7320508075688772},"192":{"tf":1.0},"200":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":2.449489742783178},"212":{"tf":1.0},"213":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":20,"docs":{"102":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":2.449489742783178},"89":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"v":{"df":41,"docs":{"0":{"tf":1.7320508075688772},"10":{"tf":1.0},"182":{"tf":1.0},"219":{"tf":2.23606797749979},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":2.6457513110645907},"223":{"tf":1.0},"225":{"tf":2.8284271247461903},"226":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":2.23606797749979},"48":{"tf":1.0},"5":{"tf":2.23606797749979},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":1.0},"9":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"237":{"tf":1.0},"78":{"tf":1.0}}}}}}},"h":{"df":16,"docs":{"101":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"218":{"tf":1.0}}}}},"s":{"c":{"df":8,"docs":{"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"225":{"tf":1.0}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"92":{"tf":1.0}}}}}},"n":{"d":{"df":5,"docs":{"149":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"w":{"df":1,"docs":{"100":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"39":{"tf":1.7320508075688772},"63":{"tf":1.0},"65":{"tf":1.4142135623730951}}}},"n":{"df":18,"docs":{"0":{"tf":1.0},"110":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.7320508075688772},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":17,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"219":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"37":{"tf":2.23606797749979},"42":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"59":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":8,"docs":{"229":{"tf":1.4142135623730951},"237":{"tf":1.0},"54":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"73":{"tf":1.0},"99":{"tf":1.0}}}}},"v":{"6":{"4":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}},"m":{"a":{"c":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"107":{"tf":1.0},"238":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":2.0}}}},"m":{"df":0,"docs":{},"e":{"df":24,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"233":{"tf":1.0},"54":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":7,"docs":{"221":{"tf":1.0},"225":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"124":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"45":{"tf":1.0},"89":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"83":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}},"c":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"78":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"194":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"140":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"196":{"tf":1.7320508075688772}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"115":{"tf":1.4142135623730951}}}},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":1,"docs":{"12":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"45":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0},"238":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"131":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"67":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":21,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"191":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"106":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"188":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"178":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":2.23606797749979},"80":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"195":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"35":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"159":{"tf":2.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"$":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"99":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"106":{"tf":1.0},"131":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}},"t":{"df":13,"docs":{"12":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\\"":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"28":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"191":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"128":{"tf":1.4142135623730951}}}},"h":{"a":{"1":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}},"df":1,"docs":{"92":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"69":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":2.6457513110645907},"123":{"tf":2.6457513110645907},"124":{"tf":2.8284271247461903},"218":{"tf":1.7320508075688772}}}}},"l":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"77":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"182":{"tf":1.0},"221":{"tf":1.0},"85":{"tf":1.0}}}},"w":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"221":{"tf":1.0},"67":{"tf":1.0}},"n":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}},"r":{"(":{"$":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"v":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0}},"’":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"181":{"tf":1.0}}}}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"117":{"tf":2.0},"124":{"tf":2.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"67":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"$":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"131":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}}}}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"237":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"19":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"72":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":1,"docs":{"225":{"tf":1.0}},"f":{"df":4,"docs":{"110":{"tf":1.0},"177":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":12,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":2.8284271247461903},"78":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"130":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"221":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":6,"docs":{"187":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"14":{"tf":2.6457513110645907},"15":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"29":{"tf":2.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"113":{"tf":1.0},"199":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"169":{"tf":1.0}}},"3":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"102":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"169":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":2.449489742783178},"180":{"tf":1.0},"181":{"tf":2.6457513110645907},"182":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"78":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"w":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"t":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"127":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"183":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"221":{"tf":1.0},"4":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"d":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":2,"docs":{"102":{"tf":1.0},"117":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"92":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"54":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"c":{"df":23,"docs":{"11":{"tf":1.0},"16":{"tf":2.23606797749979},"19":{"tf":2.23606797749979},"224":{"tf":1.0},"225":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":2.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}},"i":{"d":{"df":40,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":2.23606797749979},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.7320508075688772},"224":{"tf":2.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"4":{"tf":2.0},"41":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"’":{"df":2,"docs":{"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"94":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":3,"docs":{"84":{"tf":2.23606797749979},"85":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"c":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"109":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"35":{"tf":1.4142135623730951},"56":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":13,"docs":{"100":{"tf":1.0},"196":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":2.449489742783178},"35":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":4,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"32":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"1":{"tf":1.0},"221":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"c":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"19":{"tf":1.0}}}}}},"df":1,"docs":{"180":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"a":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":12,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"(":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"0":{"df":1,"docs":{"181":{"tf":1.0}}},"1":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0}}},"2":{"df":1,"docs":{"181":{"tf":1.0}}},"3":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"169":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"222":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"14":{"tf":1.0}}}}}},"df":9,"docs":{"0":{"tf":1.0},"106":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"224":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"r":{"d":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":10,"docs":{"140":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"197":{"tf":1.0},"231":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"221":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"177":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"r":{"df":3,"docs":{"192":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"195":{"tf":1.0}}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"178":{"tf":1.0}},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"211":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":25,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":2,"docs":{"171":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"i":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":4,"docs":{"169":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"102":{"tf":1.0},"206":{"tf":1.4142135623730951}},"l":{"(":{"$":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{">":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":3,"docs":{"225":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":2.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":25,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"177":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"190":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"78":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"e":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":18,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":3.0},"85":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"a":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":5,"docs":{"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"54":{"tf":1.0},"77":{"tf":1.0},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"101":{"tf":1.0},"172":{"tf":2.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":1.0},"193":{"tf":1.7320508075688772},"217":{"tf":2.23606797749979},"66":{"tf":1.0}}}},"p":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"39":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.7320508075688772},"197":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}},"u":{"b":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"163":{"tf":1.0},"187":{"tf":1.0},"80":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"211":{"tf":1.0},"213":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"35":{"tf":1.4142135623730951},"54":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"109":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"19":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":21,"docs":{"19":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"24":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}}},"f":{"a":{"c":{"df":3,"docs":{"100":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"178":{"tf":1.4142135623730951},"226":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.23606797749979},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"102":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":2.23606797749979},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"73":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":109,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"78":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":3,"docs":{"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"d":{"df":3,"docs":{"77":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"226":{"tf":1.0},"68":{"tf":1.0}},"n":{"df":4,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":20,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"131":{"tf":1.0},"139":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.23606797749979},"4":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"77":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"81":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"223":{"tf":3.0},"224":{"tf":1.0},"225":{"tf":3.7416573867739413},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"53":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"84":{"tf":2.0},"91":{"tf":2.0},"93":{"tf":2.0}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"4":{"tf":1.0}}}}},"df":1,"docs":{"130":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"’":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"5":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}}}},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"195":{"tf":1.0},"196":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"77":{"tf":1.0},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":13,"docs":{"13":{"tf":1.0},"131":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"u":{"df":5,"docs":{"19":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"123":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"140":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":3.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"102":{"tf":1.0},"151":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"226":{"tf":1.0}}}},"p":{"df":3,"docs":{"11":{"tf":1.0},"223":{"tf":1.0},"37":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"102":{"tf":1.0},"170":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"223":{"tf":1.0},"64":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":10,"docs":{"19":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}}},"p":{"df":2,"docs":{"107":{"tf":1.0},"28":{"tf":1.0}},"i":{"c":{"_":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"209":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"149":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"57":{"tf":2.23606797749979},"59":{"tf":3.0}}},"k":{"df":9,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}},"t":{"df":1,"docs":{"71":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"145":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"226":{"tf":1.0},"45":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"203":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"170":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":2.23606797749979}}}}},"t":{"df":2,"docs":{"113":{"tf":1.0},"176":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"109":{"tf":1.0},"136":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"77":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"0":{"tf":1.0},"114":{"tf":1.4142135623730951},"187":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"84":{"tf":2.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"124":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"187":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"71":{"tf":1.0},"77":{"tf":1.0}}}},"i":{"df":2,"docs":{"64":{"tf":1.0},"66":{"tf":1.0}},"p":{"df":2,"docs":{"83":{"tf":1.0},"93":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"109":{"tf":1.0},"225":{"tf":1.4142135623730951},"237":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"n":{"c":{"(":{"b":{",":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"a":{",":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"6":{"4":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"137":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"83":{"tf":1.4142135623730951}},"→":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":2.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"77":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":13,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"209":{"tf":1.0},"216":{"tf":1.0},"45":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":3,"docs":{"115":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":91,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":3.7416573867739413},"103":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"109":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":2.23606797749979},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.8284271247461903},"204":{"tf":2.6457513110645907},"205":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":2.0},"209":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"80":{"tf":2.0},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"217":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"72":{"tf":1.0},"82":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"z":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"210":{"tf":1.0},"214":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"224":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"36":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"223":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"214":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"42":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.0},"64":{"tf":1.7320508075688772}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.0},"237":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"11":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"72":{"tf":1.0}}}},"df":54,"docs":{"100":{"tf":1.0},"101":{"tf":2.449489742783178},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"192":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"77":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":56,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"19":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.4142135623730951}}}}}},"v":{"0":{".":{"8":{".":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"218":{"tf":1.0}}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0}}},"2":{"df":53,"docs":{"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"3":{"df":18,"docs":{"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"4":{"df":9,"docs":{"119":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0}}},"5":{"df":11,"docs":{"110":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0}}},"6":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0}}},"7":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0}}},"8":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}},"<":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"102":{"tf":1.0},"110":{"tf":2.0},"191":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":11,"docs":{"12":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.4142135623730951},"41":{"tf":1.0},"50":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":66,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":2.449489742783178},"196":{"tf":3.0},"197":{"tf":3.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.23606797749979},"80":{"tf":1.7320508075688772},"81":{"tf":2.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"1":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"’":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"_":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"140":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.0},"99":{"tf":1.0}}}}},"df":2,"docs":{"12":{"tf":1.0},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"225":{"tf":1.0}}}}}}},"df":11,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"178":{"tf":1.0},"221":{"tf":1.4142135623730951},"54":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}},"e":{"c":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"176":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"191":{"tf":1.0},"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"100":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"101":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"54":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"157":{"tf":1.0},"231":{"tf":2.23606797749979},"234":{"tf":2.23606797749979},"24":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"a":{"df":24,"docs":{"110":{"tf":1.0},"13":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"28":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"91":{"tf":2.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"197":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"238":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"221":{"tf":1.4142135623730951},"45":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"104":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":3,"docs":{"37":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}},"n":{"df":6,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"df":4,"docs":{"221":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":2.0},"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}}}}},"y":{"df":4,"docs":{"196":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"225":{"tf":1.0},"36":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"’":{"d":{"df":2,"docs":{"54":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"169":{"tf":1.0},"181":{"tf":1.0},"64":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"12":{"tf":1.0},"137":{"tf":1.0}},"n":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":21,"docs":{"101":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"95":{"tf":1.0}}},"r":{"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"123":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":30,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":2.23606797749979},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"67":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"170":{"tf":1.0},"182":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"106":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"’":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"0":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":20,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"217":{"tf":2.0},"5":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"89":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":9,"docs":{"0":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"236":{"tf":1.0},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"100":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"192":{"tf":1.0},"84":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"102":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":26,"docs":{"102":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.23606797749979},"96":{"tf":1.0},"99":{"tf":1.0}},"r":{"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"174":{"tf":1.0},"193":{"tf":1.0},"54":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"x":{"8":{"6":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"(":{"$":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"0":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"y":{"df":2,"docs":{"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"e":{"df":1,"docs":{"232":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":19,"docs":{"101":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"77":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"’":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"28":{"tf":1.7320508075688772},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"5":{"tf":1.0},"52":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"z":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":20,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"161":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"209":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"2":{"5":{"6":{">":{"(":{"df":0,"docs":{},"v":{"0":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"138":{"tf":1.4142135623730951}},"s":{">":{">":{"(":{"$":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"83":{"tf":1.0}}}}},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"title":{"root":{"0":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"2":{"4":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"3":{"/":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"146":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}},"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"b":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"157":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"201":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}},"i":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"189":{"tf":1.0},"43":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"161":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}},"z":{"df":1,"docs":{"136":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"44":{"tf":1.0}}}}}},"df":1,"docs":{"37":{"tf":1.4142135623730951}},"s":{"df":2,"docs":{"164":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"227":{"tf":1.0},"23":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"2":{"tf":1.0},"235":{"tf":1.0},"35":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"220":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"207":{"tf":1.0},"45":{"tf":1.0}},"e":{"2":{"df":2,"docs":{"208":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"172":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"173":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"17":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"19":{"tf":1.0},"235":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"60":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"153":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"114":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"129":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"231":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"72":{"tf":1.0}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"118":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"108":{"tf":1.0},"192":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"186":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}},"q":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"41":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"148":{"tf":1.0},"39":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"t":{"df":1,"docs":{"126":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"4":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"15":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"18":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"56":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"21":{"tf":1.0},"225":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":4,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"j":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"c":{"c":{"a":{"df":0,"docs":{},"k":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}},"df":2,"docs":{"140":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"35":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"12":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":1,"docs":{"57":{"tf":1.0}}}},"t":{"df":1,"docs":{"125":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"86":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"180":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"177":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"168":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":1,"docs":{"52":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"42":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"8":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"178":{"tf":1.0},"42":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"113":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"133":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"13":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"9":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}}},"r":{"df":1,"docs":{"102":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.0},"96":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"o":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"221":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"24":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"df":6,"docs":{"10":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"211":{"tf":1.0},"48":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"48":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"219":{"tf":1.0},"222":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"39":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"124":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"128":{"tf":1.0}}}},"h":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":1,"docs":{"123":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":1,"docs":{"127":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"c":{"df":4,"docs":{"16":{"tf":1.0},"236":{"tf":1.0},"52":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"i":{"c":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"u":{"b":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"19":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"21":{"tf":1.0},"235":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"11":{"tf":1.0},"56":{"tf":1.0}}}},"df":1,"docs":{"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"v":{"<":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"231":{"tf":1.0},"234":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"228":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"37":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"94":{"tf":1.0},"95":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"177":{"tf":1.0},"234":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}},"y":{"df":2,"docs":{"233":{"tf":1.0},"235":{"tf":1.0}}}},"y":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"<":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}')); \ No newline at end of file diff --git a/docs/toc-1290cc30.js b/docs/toc-f74aae8e.js similarity index 97% rename from docs/toc-1290cc30.js rename to docs/toc-f74aae8e.js index 3e153969f..494e8b755 100644 --- a/docs/toc-1290cc30.js +++ b/docs/toc-f74aae8e.js @@ -8,7 +8,7 @@ class MDBookSidebarScrollbox extends HTMLElement { super(); } connectedCallback() { - this.innerHTML = '
  1. Welcome
  2. resolc user guide
    1. Installation
    2. Command Line Interface
    3. JS NPM package
    4. Tooling integration
    5. Standard JSON interface
    6. Differences to EVM
    7. Rust contract libraries
  3. revive-runner sandbox
  4. Developer Guide
    1. Contributor guide
    2. Compiler architecture
    3. The newyork optimizer
      1. IR reference
    4. PVM and the pallet-revive runtime target
    5. Testing strategy
    6. Cross compilation
  5. FAQ
  6. Roadmap and Vision
'; + this.innerHTML = '
  1. Welcome
  2. resolc user guide
    1. Installation
    2. Command Line Interface
    3. JS NPM package
    4. Tooling integration
    5. Standard JSON interface
    6. Differences to EVM
    7. Rust contract libraries
  3. revive-runner sandbox
  4. Developer Guide
    1. Contributor guide
    2. Compiler architecture
    3. The newyork optimizer
      1. IR reference
    4. PVM and the pallet-revive runtime target
    5. Testing strategy
    6. Code coverage
    7. Cross compilation
  5. FAQ
  6. Roadmap and Vision
'; // Set the current, active page, and reveal it if it's hidden let current_page = document.location.href.toString().split('#')[0].split('?')[0]; if (current_page.endsWith('/')) { diff --git a/docs/toc.html b/docs/toc.html index 844e542a0..bf053c32a 100644 --- a/docs/toc.html +++ b/docs/toc.html @@ -26,6 +26,6 @@ -
  1. Welcome
  2. resolc user guide
    1. Installation
    2. Command Line Interface
    3. JS NPM package
    4. Tooling integration
    5. Standard JSON interface
    6. Differences to EVM
    7. Rust contract libraries
  3. revive-runner sandbox
  4. Developer Guide
    1. Contributor guide
    2. Compiler architecture
    3. The newyork optimizer
      1. IR reference
    4. PVM and the pallet-revive runtime target
    5. Testing strategy
    6. Cross compilation
  5. FAQ
  6. Roadmap and Vision
+
  1. Welcome
  2. resolc user guide
    1. Installation
    2. Command Line Interface
    3. JS NPM package
    4. Tooling integration
    5. Standard JSON interface
    6. Differences to EVM
    7. Rust contract libraries
  3. revive-runner sandbox
  4. Developer Guide
    1. Contributor guide
    2. Compiler architecture
    3. The newyork optimizer
      1. IR reference
    4. PVM and the pallet-revive runtime target
    5. Testing strategy
    6. Code coverage
    7. Cross compilation
  5. FAQ
  6. Roadmap and Vision
diff --git a/docs/user_guide.html b/docs/user_guide.html index 67ce828bf..4f1eaa920 100644 --- a/docs/user_guide.html +++ b/docs/user_guide.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-07c17d47.js"; - +
diff --git a/docs/user_guide/cli.html b/docs/user_guide/cli.html index 680408154..1d05a70e5 100644 --- a/docs/user_guide/cli.html +++ b/docs/user_guide/cli.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
diff --git a/docs/user_guide/differences.html b/docs/user_guide/differences.html index c0f682bda..959bb4496 100644 --- a/docs/user_guide/differences.html +++ b/docs/user_guide/differences.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
diff --git a/docs/user_guide/installation.html b/docs/user_guide/installation.html index c03efe2d7..3a687e88c 100644 --- a/docs/user_guide/installation.html +++ b/docs/user_guide/installation.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
diff --git a/docs/user_guide/js.html b/docs/user_guide/js.html index f5dce1754..bd19c313f 100644 --- a/docs/user_guide/js.html +++ b/docs/user_guide/js.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
diff --git a/docs/user_guide/rust_libraries.html b/docs/user_guide/rust_libraries.html index 8c1618dd8..6ba8ff124 100644 --- a/docs/user_guide/rust_libraries.html +++ b/docs/user_guide/rust_libraries.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
diff --git a/docs/user_guide/std_json.html b/docs/user_guide/std_json.html index 2372bdb69..920d64161 100644 --- a/docs/user_guide/std_json.html +++ b/docs/user_guide/std_json.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
diff --git a/docs/user_guide/tooling.html b/docs/user_guide/tooling.html index e3cdb34a0..782863c1e 100644 --- a/docs/user_guide/tooling.html +++ b/docs/user_guide/tooling.html @@ -35,10 +35,10 @@ const path_to_root = "../"; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "../searchindex-339ac392.js"; + window.path_to_searchindex_js = "../searchindex-07c17d47.js"; - +
diff --git a/docs/welcome.html b/docs/welcome.html index f31e5e306..b6d85672d 100644 --- a/docs/welcome.html +++ b/docs/welcome.html @@ -35,10 +35,10 @@ const path_to_root = ""; const default_light_theme = "light"; const default_dark_theme = "navy"; - window.path_to_searchindex_js = "searchindex-339ac392.js"; + window.path_to_searchindex_js = "searchindex-07c17d47.js"; - +